From bfb37a9ed9989f63ee8b00f41f4efef7a92fc157 Mon Sep 17 00:00:00 2001 From: Cody Robibero Date: Fri, 3 Sep 2021 07:21:21 -0600 Subject: [PATCH] Fix typos --- .../LiveTv/Listings/SchedulesDirectDtos/LineupDto.cs | 2 +- .../LiveTv/Listings/SchedulesDirectDtos/MapDto.cs | 8 ++++---- 2 files changed, 5 insertions(+), 5 deletions(-) diff --git a/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/LineupDto.cs b/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/LineupDto.cs index b8f27a8ac7..52e920aa61 100644 --- a/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/LineupDto.cs +++ b/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/LineupDto.cs @@ -24,7 +24,7 @@ namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos /// /// Gets or sets the transport. /// - [JsonPropertyName("transport.")] + [JsonPropertyName("transport")] public string Transport { get; set; } /// diff --git a/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/MapDto.cs b/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/MapDto.cs index 8d45e8fff7..5140277b2c 100644 --- a/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/MapDto.cs +++ b/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/MapDto.cs @@ -34,15 +34,15 @@ namespace Emby.Server.Implementations.LiveTv.Listings.SchedulesDirectDtos public int UhfVhf { get; set; } /// - /// Gets or sets the astc major. + /// Gets or sets the atsc major. /// - [JsonPropertyName("astcMajor")] + [JsonPropertyName("atscMajor")] public int AtscMajor { get; set; } /// - /// Gets or sets the astc minor. + /// Gets or sets the atsc minor. /// - [JsonPropertyName("astcMinor")] + [JsonPropertyName("atscMinor")] public int AtscMinor { get; set; } } }