aboutsummaryrefslogtreecommitdiff
path: root/Emby.Server.Implementations/Channels
diff options
context:
space:
mode:
authorStepan Goremykin <goremukin@gmail.com>2023-10-07 23:50:45 +0200
committerStepan Goremykin <goremukin@gmail.com>2023-10-07 23:50:45 +0200
commit73309f2649778e50709388e5208404c2dc71b30a (patch)
tree7781a0ac384d0cba4ba1722e3bea34d3074e2a81 /Emby.Server.Implementations/Channels
parent8925390ad4c9215755396a531263b654bed4d208 (diff)
Pass cancellation token
Diffstat (limited to 'Emby.Server.Implementations/Channels')
-rw-r--r--Emby.Server.Implementations/Channels/ChannelManager.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/Emby.Server.Implementations/Channels/ChannelManager.cs b/Emby.Server.Implementations/Channels/ChannelManager.cs
index 961e225e9..9e7b45386 100644
--- a/Emby.Server.Implementations/Channels/ChannelManager.cs
+++ b/Emby.Server.Implementations/Channels/ChannelManager.cs
@@ -1156,7 +1156,7 @@ namespace Emby.Server.Implementations.Channels
if (info.People is not null && info.People.Count > 0)
{
- _libraryManager.UpdatePeople(item, info.People);
+ await _libraryManager.UpdatePeopleAsync(item, info.People, cancellationToken).ConfigureAwait(false);
}
}
else if (forceUpdate)