diff options
author | GeckoEidechse <40122905+GeckoEidechse@users.noreply.github.com> | 2024-02-06 23:03:10 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-02-06 23:03:10 +0100 |
commit | fc63948e092b3495461e7aab4748af27c6dfa5ee (patch) | |
tree | 8aab5524886947f2e5d2d1eb7d6cb6cf0b188719 | |
parent | 73262ca616f0623a9715ceac90c17b0da4b320d7 (diff) | |
download | NorthstarLauncher-fc63948e092b3495461e7aab4748af27c6dfa5ee.tar.gz NorthstarLauncher-fc63948e092b3495461e7aab4748af27c6dfa5ee.zip |
Update default mods list URL (#662)v1.24.0-rc1v1.24.0
The default branch for the VerifiedMods repo was renamed from `master` to `main`.
-rw-r--r-- | primedev/mods/autodownload/moddownloader.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/primedev/mods/autodownload/moddownloader.h b/primedev/mods/autodownload/moddownloader.h index 5302c21e..10df39ce 100644 --- a/primedev/mods/autodownload/moddownloader.h +++ b/primedev/mods/autodownload/moddownloader.h @@ -4,7 +4,7 @@ private: const char* VERIFICATION_FLAG = "-disablemodverification"; const char* CUSTOM_MODS_URL_FLAG = "-customverifiedurl="; const char* STORE_URL = "https://gcdn.thunderstore.io/live/repository/packages/"; - const char* DEFAULT_MODS_LIST_URL = "https://raw.githubusercontent.com/R2Northstar/VerifiedMods/master/verified-mods.json"; + const char* DEFAULT_MODS_LIST_URL = "https://raw.githubusercontent.com/R2Northstar/VerifiedMods/main/verified-mods.json"; char* modsListUrl; struct VerifiedModVersion @@ -79,7 +79,7 @@ public: * The Northstar auto-downloading feature does NOT allow automatically installing * all mods for various (notably security) reasons; mods that are candidate to * auto-downloading are rather listed on a GitHub repository - * (https://raw.githubusercontent.com/R2Northstar/VerifiedMods/master/verified-mods.json), + * (https://raw.githubusercontent.com/R2Northstar/VerifiedMods/main/verified-mods.json), * which this method gets via a HTTP call to load into local state. * * If list fetching fails, local mods list will be initialized as empty, thus |