Skip to content

Commit

Permalink
Don't hardcode logo's link in /about (#301)
Browse files Browse the repository at this point in the history
In this PR, I made the logo link in /about use HEAD instead of hardcoded
branch.

---------

Signed-off-by: mctaylors <[email protected]>
Co-authored-by: Octol1ttle <[email protected]>
  • Loading branch information
mctaylors and Octol1ttle authored Apr 8, 2024
1 parent defa3c2 commit 508edcb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Commands/AboutCommandGroup.cs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ private async Task<Result> SendAboutBotAsync(IUser bot, Snowflake guildId, Cance
.WithSmallTitle(string.Format(Messages.AboutBot, bot.Username), bot)
.WithDescription(builder.ToString())
.WithColour(ColorsList.Cyan)
.WithImageUrl("https://raw.githubusercontent.com/TeamOctolings/Octobot/master/docs/octobot-banner.png")
.WithImageUrl("https://raw.githubusercontent.com/TeamOctolings/Octobot/HEAD/docs/octobot-banner.png")
.WithFooter(string.Format(Messages.Version, BuildInfo.Version))
.Build();

Expand Down

0 comments on commit 508edcb

Please sign in to comment.