Revert "UI: Add support for Twitch "Auto" server in auto-config"

This reverts commit 2604db6e40.

The API to get the closest server can be down occasionally, so instead
just revert to its previous behavior.
This commit is contained in:
jp9000
2017-08-02 13:36:33 -07:00
parent 9add73f656
commit 72d20de8e7
2 changed files with 17 additions and 6 deletions

View File

@@ -246,10 +246,8 @@ void AutoConfigTestPage::TestBandwidthThread()
GetServers(servers);
/* just use the first server if it only has one alternate server,
* or if using Twitch/Mixer due to the "auto" option */
if (servers.size() < 3 ||
wiz->service == AutoConfig::Service::Twitch ||
wiz->serviceName == "Mixer.com - FTL")
* or if using Mixer due to its "auto" server */
if (servers.size() < 3 || wiz->serviceName == "Mixer.com - FTL")
servers.resize(1);
/* -----------------------------------*/