We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents aaeba8d + 1adbdbc commit 561c2c4Copy full SHA for 561c2c4
app/Models/Beatmapset.php
@@ -468,8 +468,9 @@ public function removeCovers()
468
public function fetchBeatmapsetArchive()
469
{
470
$oszFile = tmpfile();
471
- $mirrorsToUse = $GLOBALS['cfg']['osu']['beatmap_processor']['mirrors_to_use'];
472
- $url = BeatmapMirror::getRandomFromList($mirrorsToUse)->generateURL($this, true);
+ $mirror = BeatmapMirror::getRandomFromList($GLOBALS['cfg']['osu']['beatmap_processor']['mirrors_to_use'])
+ ?? throw new \Exception('no available mirror');
473
+ $url = $mirror->generateURL($this, true);
474
475
if ($url === false) {
476
return false;
0 commit comments