Skip to content

Commit

Permalink
[Jellyseerr] Fix property name
Browse files Browse the repository at this point in the history
  • Loading branch information
Schaka committed Feb 15, 2024
1 parent 97ecaae commit 1a3ead9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ class JellyseerrRestService(

// Match between Radarr ID or Sonarr ID and the ID Jellyseerr stores for Radarr/Sonarr
// TODO: Maybe grab the Jellyfin ID here to make deletion in Jellyfin easier down the line?
if (item.id == candidate.media.externalServiceSlug) {
if (item.id == candidate.media.externalServiceId) {
return true
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ data class Media(
val imdbId: String?,
val tmdbId: Int?,
val tvdbId: Int?,
val externalServiceSlug: Int?,
val externalServiceId: Int?,
val jellyfinMediaId: String?,
val updatedAt: String
)

0 comments on commit 1a3ead9

Please sign in to comment.