Skip to content

Commit 561c2c4

Browse files
authored
Merge pull request #11067 from nanaya/mirror-check
More precise error message when all mirrors are down
2 parents aaeba8d + 1adbdbc commit 561c2c4

File tree

1 file changed

+3
-2
lines changed

1 file changed

+3
-2
lines changed

app/Models/Beatmapset.php

+3-2
Original file line numberDiff line numberDiff line change
@@ -468,8 +468,9 @@ public function removeCovers()
468468
public function fetchBeatmapsetArchive()
469469
{
470470
$oszFile = tmpfile();
471-
$mirrorsToUse = $GLOBALS['cfg']['osu']['beatmap_processor']['mirrors_to_use'];
472-
$url = BeatmapMirror::getRandomFromList($mirrorsToUse)->generateURL($this, true);
471+
$mirror = BeatmapMirror::getRandomFromList($GLOBALS['cfg']['osu']['beatmap_processor']['mirrors_to_use'])
472+
?? throw new \Exception('no available mirror');
473+
$url = $mirror->generateURL($this, true);
473474

474475
if ($url === false) {
475476
return false;

0 commit comments

Comments
 (0)