Skip to content

Commit

Permalink
fix: Fixed the 'Viewed by' rule for the server owner for movies. This…
Browse files Browse the repository at this point in the history
… was already fixed for TV shows in 2.1.1 (#1266)
  • Loading branch information
jorenn92 authored Sep 10, 2024
1 parent 5762edd commit a41e8ab
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/src/modules/rules/getter/plex-getter.service.ts
Original file line number Diff line number Diff line change
Expand Up @@ -52,7 +52,7 @@ export class PlexGetterService {
return metadata.addedAt ? new Date(+metadata.addedAt * 1000) : null;
}
case 'seenBy': {
const plexUsers = await this.plexApi.getCorrectedUsers();
const plexUsers = await this.plexApi.getCorrectedUsers(false);

const viewers: PlexSeenBy[] = await this.plexApi
.getWatchHistory(metadata.ratingKey)
Expand Down

0 comments on commit a41e8ab

Please sign in to comment.