Cody Robibero 3 anos atrás
pai
commit
bfb37a9ed9

+ 1 - 1
Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/LineupDto.cs

@@ -24,7 +24,7 @@ namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
         /// <summary>
         /// Gets or sets the transport.
         /// </summary>
-        [JsonPropertyName("transport.")]
+        [JsonPropertyName("transport")]
         public string Transport { get; set; }
 
         /// <summary>

+ 4 - 4
Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/MapDto.cs

@@ -34,15 +34,15 @@ namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos
         public int UhfVhf { get; set; }
 
         /// <summary>
-        /// Gets or sets the astc major.
+        /// Gets or sets the atsc major.
         /// </summary>
-        [JsonPropertyName("astcMajor")]
+        [JsonPropertyName("atscMajor")]
         public int AtscMajor { get; set; }
 
         /// <summary>
-        /// Gets or sets the astc minor.
+        /// Gets or sets the atsc minor.
         /// </summary>
-        [JsonPropertyName("astcMinor")]
+        [JsonPropertyName("atscMinor")]
         public int AtscMinor { get; set; }
     }
 }