Skip to content
This repository was archived by the owner on Oct 29, 2021. It is now read-only.

Commit 988a095

Browse files
committed
🐛 Bugfix in title.
1 parent e0f8596 commit 988a095

File tree

3 files changed

+5
-2
lines changed

3 files changed

+5
-2
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -2,3 +2,4 @@
22
utilsx/__pycache__/
33
utilsx/console/__pycache__/
44
utilsx/discord/__pycache__/
5+
venv/

utilsx/__init__.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1 +1 @@
1-
__version__ = "v0.3.53"
1+
__version__ = "v0.3.54"

utilsx/discord/formatter.py

+3-1
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,7 @@ class Cog(commands.Cog):
2626
author_handler: :class:`AuthorHandler`
2727
The author handler object.
2828
"""
29+
2930
def __init__(self):
3031
self.message_handler = MessageHandler()
3132
self.embed_handler = EmbedHandler(obj.Embed())
@@ -135,7 +136,8 @@ async def embed(self, target: Messageable, message: str, *, title: str = None, r
135136
A sent discord.py message.
136137
"""
137138
message = self.handle_message(message, format_args, handler_enabled)
138-
embed_data = self.embed_handler.process(obj.Embed(color=color, title=title, image=image, thumbnail=thumbnail))
139+
embed_data = self.embed_handler.process(
140+
obj.Embed(color=color, title=title or " ", image=image, thumbnail=thumbnail))
139141
embed = Embed(title=embed_data.title, color=embed_data.color, description=message)
140142
if embed_data.image:
141143
embed.set_image(url=embed_data.image)

0 commit comments

Comments
 (0)