We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b7d2150 commit 7aeb651Copy full SHA for 7aeb651
1 file changed
pydis_core/exts/source.py
@@ -164,6 +164,6 @@ async def _build_embed(self, source_object: object, source_type: _SourceType) ->
164
embed = Embed(title=title, description=description)
165
embed.add_field(name="Source Code", value=f"[Go to GitHub]({url})")
166
line_text = f":{first_line}" if first_line else ""
167
- embed.set_footer(text=f"{location}{line_text}")
+ embed.set_footer(text=f"{location}{line_text}", icon_url=GITHUB_AVATAR)
168
169
return embed
0 commit comments