Fix Episode Photo Logic (#537)
This commit is contained in:
parent
b436a68fea
commit
ba307ae619
|
@ -54,7 +54,7 @@ extension BaseItemDto: Poster {
|
||||||
func landscapePosterImageSources(maxWidth: CGFloat, single: Bool = false) -> [ImageSource] {
|
func landscapePosterImageSources(maxWidth: CGFloat, single: Bool = false) -> [ImageSource] {
|
||||||
switch type {
|
switch type {
|
||||||
case .episode:
|
case .episode:
|
||||||
if single || Defaults[.Customization.Episodes.useSeriesLandscapeBackdrop] {
|
if single || !Defaults[.Customization.Episodes.useSeriesLandscapeBackdrop] {
|
||||||
return [imageSource(.primary, maxWidth: maxWidth)]
|
return [imageSource(.primary, maxWidth: maxWidth)]
|
||||||
} else {
|
} else {
|
||||||
return [
|
return [
|
||||||
|
|
Loading…
Reference in New Issue