aboutsummaryrefslogtreecommitdiff
path: root/MediaBrowser.Controller/Channels/Channel.cs
diff options
context:
space:
mode:
authorBond-009 <bond.009@outlook.com>2024-02-07 16:24:36 +0100
committerGitHub <noreply@github.com>2024-02-07 16:24:36 +0100
commit143ef71528eb7adfe87cd3dcb746ac655fb0aef8 (patch)
treeb679a844aa22a8e69775b3fac9d753ee111efc8b /MediaBrowser.Controller/Channels/Channel.cs
parent7e5c5eaff8e54aaa3f1f847e1b3c0031973763fe (diff)
parent505c09c85b9816519c795c114e6100585b35e249 (diff)
Merge pull request #10969 from barronpm/progress-cleanup
Progress cleanup
Diffstat (limited to 'MediaBrowser.Controller/Channels/Channel.cs')
-rw-r--r--MediaBrowser.Controller/Channels/Channel.cs3
1 files changed, 1 insertions, 2 deletions
diff --git a/MediaBrowser.Controller/Channels/Channel.cs b/MediaBrowser.Controller/Channels/Channel.cs
index 94418683b..f186523b9 100644
--- a/MediaBrowser.Controller/Channels/Channel.cs
+++ b/MediaBrowser.Controller/Channels/Channel.cs
@@ -9,7 +9,6 @@ using System.Text.Json.Serialization;
using System.Threading;
using Jellyfin.Data.Entities;
using Jellyfin.Data.Enums;
-using MediaBrowser.Common.Progress;
using MediaBrowser.Controller.Entities;
using MediaBrowser.Model.Querying;
@@ -53,7 +52,7 @@ namespace MediaBrowser.Controller.Channels
query.ChannelIds = new Guid[] { Id };
// Don't blow up here because it could cause parent screens with other content to fail
- return ChannelManager.GetChannelItemsInternal(query, new SimpleProgress<double>(), CancellationToken.None).GetAwaiter().GetResult();
+ return ChannelManager.GetChannelItemsInternal(query, new Progress<double>(), CancellationToken.None).GetAwaiter().GetResult();
}
catch
{