Skip to content

Commit afea9a3

Browse files
authored
Merge pull request #11072 from nanaya/spotlight-checks
More strict check for spotlights page
2 parents 9a29b2e + 4225fd7 commit afea9a3

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

app/Http/Controllers/RankingController.php

+2-2
Original file line numberDiff line numberDiff line change
@@ -266,11 +266,11 @@ public function kudosu()
266266

267267
public function spotlight($mode)
268268
{
269-
$chartId = $this->params['spotlight'] ?? null;
269+
$chartId = get_int($this->params['spotlight'] ?? null);
270270

271271
$spotlights = Spotlight::orderBy('chart_id', 'desc')->get();
272272
if ($chartId === null) {
273-
$spotlight = $spotlights->first();
273+
$spotlight = $spotlights->first() ?? abort(404);
274274
} else {
275275
$spotlight = Spotlight::findOrFail($chartId);
276276
}

0 commit comments

Comments
 (0)