瀏覽代碼

Reformat JustAMan review second pass changes.

Erwin de Haan 6 年之前
父節點
當前提交
e63b18f17d

+ 1 - 1
Emby.Server.Implementations/HttpServer/HttpResultFactory.cs

@@ -714,7 +714,7 @@ namespace Emby.Server.Implementations.HttpServer
             {
                 ifNoneMatchHeader = (ifNoneMatchHeader ?? string.Empty).Trim('\"');
 
-                if (Guid.TryParse(ifNoneMatchHeader, out Guid ifNoneMatch)
+                if (Guid.TryParse(ifNoneMatchHeader, out var ifNoneMatch)
                     && cacheKey.Equals(ifNoneMatch))
                 {
                     return true;

+ 1 - 1
Emby.Server.Implementations/LiveTv/Listings/XmlTvListingsProvider.cs

@@ -269,7 +269,7 @@ namespace Jellyfin.Server.Implementations.LiveTv.Listings
             string path = await GetXml(info.Path, CancellationToken.None).ConfigureAwait(false);
             _logger.LogDebug("Opening XmlTvReader for {path}", path);
             var reader = new XmlTvReader(path, GetLanguage(info));
-            var results = reader.GetChannels();
+            IEnumerable<XmlTvChannel> results = reader.GetChannels();
 
             // Should this method be async?
             return results.Select(c => new NameIdPair() { Id = c.Id, Name = c.DisplayName }).ToList();