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 6c92fcf commit 8ba4199Copy full SHA for 8ba4199
source/funkin/backend/system/updating/UpdateUtil.hx
@@ -63,7 +63,7 @@ class UpdateUtil {
63
}
64
65
static function __checkForUpdates():UpdateCheckCallback {
66
- var curTag = 'v${Flags.VERSION}', error = false;
+ var curTag = 'v' + (Flags.VERSION == null ? Application.current.meta.get('version') : Flags.VERSION), error = false;
67
var newUpdates = __doReleaseFiltering(GitHub.getReleases(Flags.REPO_OWNER, Flags.REPO_NAME, (e) -> {
68
error = true;
69
}), curTag);
0 commit comments