Browse Source

Allow to re-see the first viewed Story

pull/1431/head
Timothée Jaussoin 7 months ago
parent
commit
d609385a72
  1. 2
      app/Roster.php

2
app/Roster.php

@ -73,7 +73,7 @@ class Roster extends Model
{
return $this->stories->filter(function ($story) {
return $story->my_views_count == 0;
})->first();
})->first() ?? $this->stories->first();
}
public function getStoriesSeenAttribute(): bool

Loading…
Cancel
Save