No more JWTs for Scripts + Polish (#4274)

Co-authored-by: Amelia <77553571+Fesaa@users.noreply.github.com>
This commit is contained in:
Joe Milazzo
2025-12-13 06:55:02 -07:00
committed by GitHub
parent b67680c639
commit 8043650aa5
131 changed files with 7804 additions and 1849 deletions
@@ -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)
{