aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/LiveTv
diff options
context:
space:
mode:
authorBond_009 <Bond.009@outlook.com>2020-02-19 21:04:28 +0100
committerBond_009 <Bond.009@outlook.com>2020-02-19 21:04:28 +0100
commit184ad29f3f5a579b38ce01d88bf22ad9dc229617 (patch)
treec099064faa5b4b9f04bb6085adb1490fb6869db9 /Emby.Server.Implementations/LiveTv
parent7060934792d463840a616499ab869d4285582608 (diff)
Address comments
Diffstat (limited to 'Emby.Server.Implementations/LiveTv')
-rw-r--r--Emby.Server.Implementations/LiveTv/LiveTvMediaSourceProvider.cs2
1 files changed, 2 insertions, 0 deletions
diff --git a/Emby.Server.Implementations/LiveTv/LiveTvMediaSourceProvider.cs b/Emby.Server.Implementations/LiveTv/LiveTvMediaSourceProvider.cs
index 7503c5d069..33887bbfd2 100644
--- a/Emby.Server.Implementations/LiveTv/LiveTvMediaSourceProvider.cs
+++ b/Emby.Server.Implementations/LiveTv/LiveTvMediaSourceProvider.cs
@@ -98,6 +98,7 @@ namespace Emby.Server.Implementations.LiveTv
item.Id.ToString("N", CultureInfo.InvariantCulture),
source.Id ?? string.Empty
};
+
source.OpenToken = string.Join(StreamIdDelimeterString, openKeys);
}
@@ -113,6 +114,7 @@ namespace Emby.Server.Implementations.LiveTv
return list;
}
+ /// <inheritdoc />
public async Task<ILiveStream> OpenMediaSource(string openToken, List<ILiveStream> currentLiveStreams, CancellationToken cancellationToken)
{
var keys = openToken.Split(new[] { StreamIdDelimeter }, 3);