mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-05-04 18:09:12 +03:00
[PR #12156] Fix refresh data does not retain LinkedChildren #13097
Reference in New Issue
Block a user
Delete Branch "%!s()"
Deleting a branch is permanent. Although the deleted branch may continue to exist for a short time before it actually gets removed, it CANNOT be undone in most cases. Continue?
Original Pull Request: https://github.com/jellyfin/jellyfin/pull/12156
State: closed
Merged: No
I think the issue is caused by new
LinkedChildrenintroduced in 10.9.When refreshing metadata, a new item is created instead of updating. but
LinkedChildrenis not copied.Changes
When refreshing metadata, the
LinkedChildrenshould also be copied if the item isFolder.Otherwise, all the added items will be removed on refreshing metadata.
Issues
Fixes: #12155