From f8a370385e7a9bb515b5fba59c1424c137622b61 Mon Sep 17 00:00:00 2001 From: blckmn Date: Sun, 30 Nov 2025 05:03:13 +1100 Subject: [PATCH] Update the DNS name for presets The use of the location: https://api.betaflight.com/firmware-presets/ will remain, however in the future it may be served by a proxy for backwards compatibility, and the use of api.betaflight.com for more purposes other than presets. --- src/tabs/presets/SourcesDialog/SourcesDialog.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/tabs/presets/SourcesDialog/SourcesDialog.js b/src/tabs/presets/SourcesDialog/SourcesDialog.js index 592ce8bf2dc..83d2cc3adf8 100644 --- a/src/tabs/presets/SourcesDialog/SourcesDialog.js +++ b/src/tabs/presets/SourcesDialog/SourcesDialog.js @@ -74,7 +74,7 @@ export default class PresetsSourcesDialog { _createOfficialSource() { const officialSource = new PresetSource( "Betaflight Official Presets", - "https://api.betaflight.com/firmware-presets/", + "https://presets.betaflight.com/firmware-presets/", "", ); officialSource.official = true;