Skip to content

Commit

Permalink
fix(sonarr): invalid linking to theTVDB content
Browse files Browse the repository at this point in the history
[skip ci]
  • Loading branch information
JagandeepBrar committed Jun 20, 2022
1 parent fb3e8e5 commit 80678a7
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/utils/links.dart
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ enum LunaLinkedContent {

switch (type) {
case LinkedContentType.MOVIE:
return '$base/dereferrer/series/$id';
case LinkedContentType.SERIES:
return '$base/dereferrer/movie/$id';
case LinkedContentType.SERIES:
return '$base/dereferrer/series/$id';
case LinkedContentType.PERSON:
return '$base/people/$id';
default:
Expand Down

0 comments on commit 80678a7

Please sign in to comment.