small fix

This commit is contained in:
kremsy
2014-02-16 13:35:48 +01:00
committed by Steffen Schröder
parent deeb05e681
commit 40002c0ecd
2 changed files with 8 additions and 10 deletions

View File

@ -502,8 +502,6 @@ class MapManager implements CallbackListener {
$serverInfo = $this->maniaControl->client->getSystemInfo();
$title = strtolower(substr($serverInfo->titleId, 0, 2));
$url = "http://{$title}.mania-exchange.com/tracks/download/{$mapInfo->id}";
//Download the file
$function = function ($file, $error) use (&$login, &$mapInfo, &$mapDir, &$update) {
if (!$file) {
@ -513,7 +511,7 @@ class MapManager implements CallbackListener {
}
$this->processMapFile($file, $mapInfo, $mapDir, $login, $update);
};
$this->maniaControl->fileReader->loadFile($url, $function);
$this->maniaControl->fileReader->loadFile($mapInfo->downLoadUrl, $function);
});
}
}