diff options
| -rw-r--r-- | bot/exts/evergreen/githubinfo.py | 4 | 
1 files changed, 2 insertions, 2 deletions
| diff --git a/bot/exts/evergreen/githubinfo.py b/bot/exts/evergreen/githubinfo.py index f52454ba..b66512b3 100644 --- a/bot/exts/evergreen/githubinfo.py +++ b/bot/exts/evergreen/githubinfo.py @@ -57,9 +57,9 @@ class GithubInfo(commands.Cog):              # Forming blog link              if user_data['blog'].startswith("http"):  # Blog link is complete -                blog = f"[Direct link]({user_data['blog']})" +                blog = user_data['blog']              elif user_data['blog']:  # Blog exists but the link is not complete -                blog = f"[Direct link](https://{user_data['blog']})" +                blog = f"https://{user_data['blog']}"              else:                  blog = "No blog link available" | 
