mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-02-15 09:02:25 +00:00
consolidate ibn api a bit
This commit is contained in:
@@ -424,7 +424,7 @@ namespace MediaBrowser.Controller.Entities
|
||||
{
|
||||
BaseItem currentChild;
|
||||
|
||||
if (currentChildren.TryGetValue(child.Id, out currentChild))
|
||||
if (currentChildren.TryGetValue(child.Id, out currentChild) && child.IsInMixedFolder == currentChild.IsInMixedFolder)
|
||||
{
|
||||
var currentChildLocationType = currentChild.LocationType;
|
||||
if (currentChildLocationType != LocationType.Remote &&
|
||||
@@ -433,7 +433,6 @@ namespace MediaBrowser.Controller.Entities
|
||||
currentChild.DateModified = child.DateModified;
|
||||
}
|
||||
|
||||
currentChild.IsInMixedFolder = child.IsInMixedFolder;
|
||||
currentChild.IsOffline = false;
|
||||
}
|
||||
else
|
||||
|
||||
Reference in New Issue
Block a user