From 74a64978b1bef1cf3859ae01179d0ba6759da9b8 Mon Sep 17 00:00:00 2001 From: TheBestAstroNOT Date: Tue, 3 Mar 2026 12:00:01 +0530 Subject: [PATCH 1/2] Update dependency loop message --- source/Reloaded.Mod.Launcher.Lib/Update.cs | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/source/Reloaded.Mod.Launcher.Lib/Update.cs b/source/Reloaded.Mod.Launcher.Lib/Update.cs index 42021d8a..1c2e94c5 100644 --- a/source/Reloaded.Mod.Launcher.Lib/Update.cs +++ b/source/Reloaded.Mod.Launcher.Lib/Update.cs @@ -406,6 +406,8 @@ private static void ShowStuckInDownloadLoopDialog(ModDependencyResolveResult res $"Please report this issue to the link above if you encounter it.\n" + $"In the meantime, download the required mods manually (you should " + $"hopefully find it by ID or Name).\n\n" + + $"Sometimes this also happens if you exceed your API limit,\n" + + $"So you can also try waiting for 1 hour and the problem may fix itself.\n\n" + $"Sorry for the pain."); ActionWrappers.ExecuteWithApplicationDispatcher(() => @@ -415,4 +417,4 @@ private static void ShowStuckInDownloadLoopDialog(ModDependencyResolveResult res }); }); } -} \ No newline at end of file +} From 5c92ce333130a017dd9a47575a655e13ec3b388f Mon Sep 17 00:00:00 2001 From: TheBestAstroNOT Date: Tue, 3 Mar 2026 12:06:08 +0530 Subject: [PATCH 2/2] Apply CodeRabbit's suggestion --- source/Reloaded.Mod.Launcher.Lib/Update.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/source/Reloaded.Mod.Launcher.Lib/Update.cs b/source/Reloaded.Mod.Launcher.Lib/Update.cs index 1c2e94c5..4c4abdc9 100644 --- a/source/Reloaded.Mod.Launcher.Lib/Update.cs +++ b/source/Reloaded.Mod.Launcher.Lib/Update.cs @@ -406,8 +406,8 @@ private static void ShowStuckInDownloadLoopDialog(ModDependencyResolveResult res $"Please report this issue to the link above if you encounter it.\n" + $"In the meantime, download the required mods manually (you should " + $"hopefully find it by ID or Name).\n\n" + - $"Sometimes this also happens if you exceed your API limit,\n" + - $"So you can also try waiting for 1 hour and the problem may fix itself.\n\n" + + $"Sometimes this can also happen if you exceed the API rate limit.\n" + + $"Try again after about an hour; the issue may resolve itself.\n\n" + $"Sorry for the pain."); ActionWrappers.ExecuteWithApplicationDispatcher(() =>