mirror of
https://github.com/jellyfin/jellyfin.git
synced 2025-04-24 14:08:44 -04:00
Merge pull request #8163 from daullmer/cover-m3u
Don't refresh playlists on album refresh
This commit is contained in:
commit
444b0ea310
1 changed files with 2 additions and 2 deletions
|
@ -169,8 +169,8 @@ namespace MediaBrowser.Controller.Entities.Audio
|
|||
|
||||
var childUpdateType = ItemUpdateType.None;
|
||||
|
||||
// Refresh songs
|
||||
foreach (var item in items)
|
||||
// Refresh songs only and not m3u files in album folder
|
||||
foreach (var item in items.OfType<Audio>())
|
||||
{
|
||||
cancellationToken.ThrowIfCancellationRequested();
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue