1
0
Fork 0

Update NotificationService, fix order bug

This commit is contained in:
Daniel Supernault 2023-09-18 00:25:01 -06:00
parent 61d235b797
commit 0210f8aa2a
No known key found for this signature in database
GPG Key ID: 0DEF1C662C9033F7
1 changed files with 2 additions and 0 deletions

View File

@ -58,6 +58,7 @@ class NotificationService {
$stop = $stop > 400 ? 400 : $stop;
$ids = Notification::where('id', '>', self::getEpochId())
->where('profile_id', $id)
->orderByDesc('id')
->skip($start)
->take($stop)
->pluck('id');
@ -281,6 +282,7 @@ class NotificationService {
if(self::count($id) == 0 || $force == true) {
$ids = Notification::where('profile_id', $id)
->where('id', '>', self::getEpochId())
->orderByDesc('id')
->limit($stop)
->pluck('id');
foreach($ids as $key) {