diff --git a/src/BuildInfo.cs b/src/BuildInfo.cs
index f507c80..34d511b 100644
--- a/src/BuildInfo.cs
+++ b/src/BuildInfo.cs
@@ -10,7 +10,7 @@ public static class BuildInfo
 
     private const string Commit = ThisAssembly.Git.Commit;
 
-    public const string Branch = ThisAssembly.Git.Branch;
+    private const string Branch = ThisAssembly.Git.Branch;
 
     public static bool IsDirty => ThisAssembly.Git.IsDirty;
 
diff --git a/src/Commands/AboutCommandGroup.cs b/src/Commands/AboutCommandGroup.cs
index 4aa9701..cf7e882 100644
--- a/src/Commands/AboutCommandGroup.cs
+++ b/src/Commands/AboutCommandGroup.cs
@@ -118,7 +118,7 @@ public class AboutCommandGroup : CommandGroup
             .WithSmallTitle(string.Format(Messages.AboutBot, bot.Username), bot)
             .WithDescription(builder.ToString())
             .WithColour(ColorsList.Cyan)
-            .WithImageUrl($"https://git.mctaylors.ru/TeamInklings/OctobotStealth/media/branch/{BuildInfo.Branch}/docs/octobot-banner.png")
+            .WithImageUrl("https://git.mctaylors.ru/TeamInklings/OctobotStealth/media/branch/stealth/docs/octobot-banner.png")
             .WithFooter(string.Format(Messages.Version, BuildInfo.Version))
             .Build();