Skip to content

Commit 29fe674

Browse files
authored
Merge pull request #11131 from nanaya/wrong-syntax
Fix incorrect query syntax
2 parents 5dc9838 + 47bb862 commit 29fe674

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

Diff for: app/Libraries/Search/BeatmapsetSearch.php

+1-1
Original file line numberDiff line numberDiff line change
@@ -426,7 +426,7 @@ private function getPlayedBeatmapIds(?array $rank = null)
426426
{
427427
$query = Solo\Score
428428
::indexable()
429-
::where('user_id', $this->params->user->getKey())
429+
->where('user_id', $this->params->user->getKey())
430430
->whereIn('ruleset_id', $this->getSelectedModes());
431431

432432
if ($rank === null) {

0 commit comments

Comments
 (0)