diff options
| author | orut34iop <orut34iop@users.noreply.github.com> | 2026-09-15 11:16:56 -0400 |
|---|---|---|
| committer | Cody Robibero <cody@robibe.ro> | 2026-09-15 11:16:56 -0400 |
| commit | 28be079779d4508b5ab2a2fd4b482f3fd929ced5 (patch) | |
| tree | 11d98fbe9a6265883869342d92ec6e0d40dbb572 /src | |
| parent | 5a3a5a26884254bfc7d12beff038ef8f1a89a3cf (diff) | |
Backport pull request #18006 from jellyfin/release-12.z
Preserve active scans when requesting a background library refresh
Original-merge: 949e0585a65a91f90644a2475c1e1009e5d51e90
Merged-by: crobibero <cody@robibe.ro>
Backported-by: Cody Robibero <cody@robibe.ro>
Diffstat (limited to 'src')
| -rw-r--r-- | src/Jellyfin.LiveTv/Recordings/RecordingsManager.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/Jellyfin.LiveTv/Recordings/RecordingsManager.cs b/src/Jellyfin.LiveTv/Recordings/RecordingsManager.cs index 62a06370da..8a5aeccba5 100644 --- a/src/Jellyfin.LiveTv/Recordings/RecordingsManager.cs +++ b/src/Jellyfin.LiveTv/Recordings/RecordingsManager.cs @@ -286,7 +286,7 @@ public sealed class RecordingsManager : IRecordingsManager, IDisposable if (requiresRefresh) { - await _libraryManager.ValidateMediaLibrary(new Progress<double>(), CancellationToken.None).ConfigureAwait(false); + _libraryManager.QueueLibraryScan(); } } |
