Cherry-pick: revert "Use server-list.json in classic frontend by default"#776
Merged
Cherry-pick: revert "Use server-list.json in classic frontend by default"#776
Conversation
This reverts commit fdb1681. Co-authored-by: sstidl <12804296+sstidl@users.noreply.github.com>
Copilot created this pull request from a session on behalf of
sstidl
April 12, 2026 10:43
View session
Contributor
Review Summary by QodoRevert server-list.json fallback in classic frontend
WalkthroughsDescription• Revert automatic server-list.json fallback in classic frontend • Restore original standalone vs multi-server initialization logic • Bump version to v6.0.1 Diagramflowchart LR
A["initServers function"] --> B{SPEEDTEST_SERVERS empty?}
B -->|Yes| C["Show standalone UI"]
B -->|No| D{Is string URL?}
D -->|Yes| E["Load from URL"]
D -->|No| F["Use hardcoded list"]
E --> G["Run server selection"]
F --> G
File Changes1. speedtest.js
|
Contributor
Code Review by Qodo
|
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Cherry-picks fd76790 into master, reverting the automatic
server-list.jsonfallback that was added to the classic frontend.Changes
index-classic.html: Restores originalinitServers()logic — standalone installations go straight to the test UI; multi-server installations either fetch from an explicit URL string or use the hardcoded array. Removes the intermediate "tryserver-list.json, fall back to standalone" path that was introduced.