diff options
| author | Erwin de Haan <EraYaN@users.noreply.github.com> | 2019-01-19 22:04:09 +0100 |
|---|---|---|
| committer | Erwin de Haan <EraYaN@users.noreply.github.com> | 2019-01-19 22:07:48 +0100 |
| commit | 949393043daf16935d17739a167717e737813b11 (patch) | |
| tree | 7294e64cfaf98436f48e41a4c6b224ae61e8d896 | |
| parent | 55538764fa06a64795c099fc6496df9dbb4156bd (diff) | |
Fixed missing out keyword.
| -rw-r--r-- | Emby.Server.Implementations/LiveTv/TunerHosts/M3uParser.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/LiveTv/TunerHosts/M3uParser.cs b/Emby.Server.Implementations/LiveTv/TunerHosts/M3uParser.cs index c77559c75..00ec4bf65 100644 --- a/Emby.Server.Implementations/LiveTv/TunerHosts/M3uParser.cs +++ b/Emby.Server.Implementations/LiveTv/TunerHosts/M3uParser.cs @@ -291,7 +291,7 @@ namespace Emby.Server.Implementations.LiveTv.TunerHosts if (string.IsNullOrWhiteSpace(name)) { - attributes.TryGetValue("tvg-id", string name); + attributes.TryGetValue("tvg-id", out name); } if (string.IsNullOrWhiteSpace(name)) |
