Skip to content

Commit 9440548

Browse files
committed
Fix auto-updater querying the wrong endpoint
1 parent c08fc16 commit 9440548

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

scripts/control_create/control_create.gml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -488,7 +488,7 @@ function control_create() {
488488

489489
// Updates
490490
if (check_update)
491-
update_http = http_get(link_latest)
491+
update_http = http_get(link_releases)
492492
else
493493
update_http = -1
494494
update_download = -1

scripts/macros/macros.gml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@ function macros() {
88

99
#macro link_github "https://github.com/OpenNBS/OpenNoteBlockStudio"
1010
#macro link_report "https://github.com/OpenNBS/OpenNoteBlockStudio/issues/new/choose"
11-
#macro link_latest "https://api.github.com/repos/OpenNBS/OpenNoteBlockStudio/releases/latest"
11+
#macro link_releases "https://api.github.com/repos/OpenNBS/OpenNoteBlockStudio/releases"
1212
#macro link_changelog "https://opennbs.org/changelog"
1313
#macro link_website "https://opennbs.org/"
1414
#macro link_discord "https://discord.gg/sKPGjyVcyy"

0 commit comments

Comments
 (0)