From cd06397e64a4b7930b2d429769ff007d18e6e30b Mon Sep 17 00:00:00 2001
From: Toastie <toastie@toastiet0ast.com>
Date: Sun, 22 Dec 2024 21:08:06 +1300
Subject: [PATCH] Update elliebot release url with the new repo url

---
 EllieHub/Features/BotConfig/Services/EllieResolver.cs | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/EllieHub/Features/BotConfig/Services/EllieResolver.cs b/EllieHub/Features/BotConfig/Services/EllieResolver.cs
index 7b0f969..bb8ce25 100644
--- a/EllieHub/Features/BotConfig/Services/EllieResolver.cs
+++ b/EllieHub/Features/BotConfig/Services/EllieResolver.cs
@@ -15,12 +15,12 @@ namespace EllieHub.Services;
 /// <summary>
 /// Service that checks, downloads, installs, and updates a EllieBot instance.
 /// </summary>
-/// <remarks>Source: https://toastielab.dev/Emotions-stuff/elliebot/releases/latest</remarks>
+/// <remarks>Source: https://toastielab.dev/EllieBotDevs/elliebot/releases/latest</remarks>
 public sealed partial class EllieResolver : IBotResolver
 {
     private const string _cachedCurrentVersionKey = "currentVersion:EllieBot";
-    private const string _toastielabReleasesEndpointUrl = "https://toastielab.dev/api/v1/repos/Emotions-stuff/elliebot/releases/latest";
-    private const string _toastielabReleasesRepoUrl = "https://toastielab.dev/Emotions-stuff/elliebot/releases/latest";
+    private const string _toastielabReleasesEndpointUrl = "https://toastielab.dev/api/v1/repos/EllieBotDevs/elliebot/releases/latest";
+    private const string _toastielabReleasesRepoUrl = "https://toastielab.dev/EllieBotDevs/elliebot/releases/latest";
     private static readonly HashSet<Guid> _updateIdOngoing = [];
     private static readonly string _tempDirectory = Path.GetTempPath();
     private static readonly Regex _unzipedDirRegex = GenerateUnzipedDirRegex();
@@ -327,7 +327,7 @@ public sealed partial class EllieResolver : IBotResolver
         }
         catch (InvalidOperationException)
         {
-            return $"https://toastielab.dev/Emotions-stuff/elliebot/releases/download/{latestVersion}/{downloadFileName}";
+            return $"https://toastielab.dev/EllieBotDevs/elliebot/releases/download/{latestVersion}/{downloadFileName}";
         }
     }