Skip to content

Commit

Permalink
Actually fix the updater this time.
Browse files Browse the repository at this point in the history
  • Loading branch information
TopazTK committed Feb 27, 2022
1 parent ab7b8ce commit 3fb9774
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion _COMMON/UpdateAgent.cs
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ public static void UpdateCheck()
var _latestNumber = Convert.ToDouble(_latestInfo.TagName.Substring(1));

if (_latestNumber >= 100)
_latestNumber = Convert.ToDouble(_latestInfo.TagName.Substring(1).Replace(".", ","));
_latestNumber = Convert.ToDouble(_latestInfo.TagName.Substring(1).Replace(",", "."));

var _latestFile = _latestInfo.Assets[0].BrowserDownloadUrl;

Expand Down

0 comments on commit 3fb9774

Please sign in to comment.