Skip to content

Commit ffd1cf5

Browse files
authored
Update updateCheck and addonStore URLs to use new NV Access endpoints (#17680)
Summary of the issue: NV Access has changed the update check and add-on store endpoint URLS. While these are forwarded for now, NVDA should migrate over Description of user facing changes Use new URLs Description of development approach Use new URLs Testing strategy: Tested by setting mirrors manually in NVDA settings Known issues with pull request: None
1 parent 811338a commit ffd1cf5

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

source/addonStore/network.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@
4242
from gui.addonStoreGui.viewModels.addonList import AddonListItemVM
4343

4444

45-
_DEFAULT_BASE_URL = "https://nvaccess.org/addonStore"
45+
_DEFAULT_BASE_URL = "https://addonStore.nvaccess.org"
4646
_LATEST_API_VER = "latest"
4747
"""
4848
A string value used in the add-on store to fetch the latest version of all add-ons,

source/updateCheck.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
from utils.tempFile import _createEmptyTempFileForDeletingFile
7171

7272
#: The URL to use for update checks.
73-
_DEFAULT_CHECK_URL = "https://www.nvaccess.org/nvdaUpdateCheck"
73+
_DEFAULT_CHECK_URL = "https://api.nvaccess.org/nvdaUpdateCheck"
7474
#: The time to wait between checks.
7575
CHECK_INTERVAL = 86400 # 1 day
7676
#: The time to wait before retrying a failed check.

0 commit comments

Comments
 (0)