mirror of
https://github.com/Kareadita/Kavita.git
synced 2026-05-13 11:02:18 -04:00
No more JWTs for Scripts + Polish (#4274)
Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com>
This commit is contained in:
@@ -44,8 +44,8 @@ public static class ActivityFilter
|
||||
queryable = queryable
|
||||
.Where(d => filter.Libraries.Contains(d.LibraryId) && d.ReadingSession.AppUserId == userId)
|
||||
.WhereIf(onlyCompleted, d => d.EndPage >= d.Chapter.Pages)
|
||||
.WhereIf(startTime != null, d => d.StartTime >= startTime)
|
||||
.WhereIf(endTime != null, d => d.EndTime <= endTime);
|
||||
.WhereIf(startTime != null, d => d.StartTimeUtc >= startTime)
|
||||
.WhereIf(endTime != null, d => d.EndTimeUtc <= endTime);
|
||||
|
||||
if (isAggregate)
|
||||
{
|
||||
|
||||
Reference in New Issue
Block a user