We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 49c46f6 commit 51b0a95Copy full SHA for 51b0a95
BeatSaberOnline/Utils/AutoUpdater.cs
@@ -36,7 +36,7 @@ public static IEnumerator GetLatestVersionDownload()
36
string status = result[0]["approval"];
37
38
// Check if the remote version on modsaber is newer than what we have and if that version is approved
39
- if (latestVersion <= currentVersion && status == "approved") yield break;
+ if (latestVersion <= currentVersion && status != "approved") yield break;
40
41
Data.Logger.Info($"Found a new version, lets download it {result[0]["files"]["steam"]["url"].Value}");
42
0 commit comments