Skip to content

Commit

Permalink
Handle mirrors in this country (#3)
Browse files Browse the repository at this point in the history
  • Loading branch information
vkensou authored and JKSH committed May 15, 2017
1 parent a221bb4 commit 3847c09
Showing 1 changed file with 6 additions and 1 deletion.
7 changes: 6 additions & 1 deletion src/downloader.cpp
Expand Up @@ -30,7 +30,12 @@ Downloader::loadMirrors()
return;

QStringList tmp;
if (page.contains("mirrors in other countries, but same continent"))
if (page.contains("mirrors which handle this country"))
{
// Handles continental servers if existing
tmp = page.split("mirrors which handle this country");
}
else if (page.contains("mirrors in other countries, but same continent"))
{
// Handles continental servers if existing
tmp = page.split("mirrors in other countries, but same continent");
Expand Down

0 comments on commit 3847c09

Please sign in to comment.