diff options
| author | Joshua M. Boniface <joshua@boniface.me> | 2019-01-19 16:11:27 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-01-19 16:11:27 -0500 |
| commit | 1bd477e2e5fb8edb640388225ab6af41c1577cb4 (patch) | |
| tree | 7294e64cfaf98436f48e41a4c6b224ae61e8d896 | |
| parent | 55538764fa06a64795c099fc6496df9dbb4156bd (diff) | |
| parent | 949393043daf16935d17739a167717e737813b11 (diff) | |
Merge pull request #626 from EraYaN/m3uparser-syntax-fix
Fix extra type name in parameter, add 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)) |
