Skip to content

Commit

Permalink
fix: repeat notifications for available 4k media
Browse files Browse the repository at this point in the history
  • Loading branch information
jellyfin committed Aug 9, 2023
1 parent 6a8406b commit 30361f2
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/job/jellyfinsync/index.ts
Expand Up @@ -319,7 +319,7 @@ class JobJellyfinSync {
: existingSeason.status;
existingSeason.status4k =
(this.enable4kShow && total4k >= season.episode_count) ||
existingSeason.status === MediaStatus.AVAILABLE
existingSeason.status4k === MediaStatus.AVAILABLE
? MediaStatus.AVAILABLE
: this.enable4kShow && total4k > 0
? MediaStatus.PARTIALLY_AVAILABLE
Expand Down

0 comments on commit 30361f2

Please sign in to comment.