Minor code tweak for new, stricter inspections.

This commit is contained in:
Buster "Silver Eagle" Neece 2021-11-08 04:29:01 -06:00
parent 1a1551754f
commit 4cbb9dd755
No known key found for this signature in database
GPG Key ID: 6D9E12FF03411F4E
1 changed files with 1 additions and 1 deletions

View File

@ -219,7 +219,7 @@ class NowPlayingApiGenerator
continue;
}
if ($lastCued->getTimestampCued() >= $currentSongQueueEntry?->getTimestampCued() ?? 0) {
if ($lastCued->getTimestampCued() >= ($currentSongQueueEntry?->getTimestampCued() ?? 0)) {
return $lastCued;
}
}