diff options
| author | Claus Vium <cvium@users.noreply.github.com> | 2023-02-12 13:07:18 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-02-12 13:07:18 +0100 |
| commit | f5c970e67ff922808cb5684d1185966e19fd789b (patch) | |
| tree | 1cfb3e9c3188697ef118f9ac60f0af0e4243cb3e /Emby.Server.Implementations/Data | |
| parent | 9f389d7afda3572ee95a71a92750bb61f113790a (diff) | |
| parent | 32eccc139c4b35aef04a29cefb11c6130726f617 (diff) | |
Merge pull request #9297 from crobibero/livetv-tweaks
LiveTV fixes
Diffstat (limited to 'Emby.Server.Implementations/Data')
| -rw-r--r-- | Emby.Server.Implementations/Data/SqliteItemRepository.cs | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/Data/SqliteItemRepository.cs b/Emby.Server.Implementations/Data/SqliteItemRepository.cs index e828bfabf..602d2a853 100644 --- a/Emby.Server.Implementations/Data/SqliteItemRepository.cs +++ b/Emby.Server.Implementations/Data/SqliteItemRepository.cs @@ -5458,6 +5458,9 @@ AND Type = @InternalPersonType)"); list.AddRange(inheritedTags.Select(i => (6, i))); + // Remove all invalid values. + list.RemoveAll(i => string.IsNullOrEmpty(i.Item2)); + return list; } |
