fix music videos in epg (#166)

This commit is contained in:
Jason Dove
2021-04-13 06:20:37 -05:00
committed by GitHub
parent a2700e087c
commit f89f3d2225
2 changed files with 8 additions and 0 deletions
+3
View File
@@ -239,6 +239,9 @@ namespace ErsatzTV.Core.Iptv
Episode e => e.EpisodeMetadata.HeadOrNone().Match(
em => em.Title ?? string.Empty,
() => string.Empty),
MusicVideo mv => mv.MusicVideoMetadata.HeadOrNone().Match(
mvm => mvm.Title ?? string.Empty,
() => string.Empty),
_ => string.Empty
};
}