aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations
diff options
context:
space:
mode:
authorCody Robibero <cody@robibe.ro>2021-09-03 07:21:21 -0600
committerCody Robibero <cody@robibe.ro>2021-09-03 07:21:21 -0600
commitbfb37a9ed9989f63ee8b00f41f4efef7a92fc157 (patch)
tree48d7b9c4f5e77bc33d45935cbf3112e35c77df92 /Emby.Server.Implementations
parent3f2c7065756682c96c90189ab5157b96fdb92bd0 (diff)
Fix typos
Diffstat (limited to 'Emby.Server.Implementations')
-rw-r--r--Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/LineupDto.cs2
-rw-r--r--Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/MapDto.cs8
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 b8f27a8ac..52e920aa6 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
/// <summary>
/// Gets or sets the transport.
/// </summary>
- [JsonPropertyName("transport.")]
+ [JsonPropertyName("transport")]
public string Transport { get; set; }
/// <summary>
diff --git a/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/MapDto.cs b/Emby.Server.Implementations/LiveTv/Listings/SchedulesDirectDtos/MapDto.cs
index 8d45e8fff..5140277b2 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; }
/// <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; }
}
}