Skip to content

Commit a7d3345

Browse files
committed
fix close on emoji
1 parent bfef29a commit a7d3345

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

+1-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/).
66
This project mostly adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html);
77
however, insignificant breaking changes do not guarantee a major version bump, see the reasoning [here](https://github.com/kyb3r/modmail/issues/319). If you're a plugin developer, note the "BREAKING" section.
88

9-
# v3.7.4
9+
# v3.7.5
1010

1111
### Fixed
1212

bot.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
__version__ = "3.7.4"
1+
__version__ = "3.7.5"
22

33

44
import asyncio

core/thread.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -191,7 +191,7 @@ async def send_recipient_genesis_message():
191191
embed.set_footer(text=footer, icon_url=self.bot.guild.icon_url)
192192
embed.title = self.bot.config["thread_creation_title"]
193193

194-
if creator != recipient:
194+
if creator is None or creator == recipient:
195195
msg = await recipient.send(embed=embed)
196196

197197
if recipient_thread_close:

0 commit comments

Comments
 (0)