mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-06-03 06:18:28 +01:00
move to new System.Threading.Lock type for better performance
This commit is contained in:
@@ -21,7 +21,7 @@ namespace MediaBrowser.Controller.Entities
|
||||
/// </summary>
|
||||
public class UserRootFolder : Folder
|
||||
{
|
||||
private readonly object _childIdsLock = new object();
|
||||
private readonly Lock _childIdsLock = new();
|
||||
private List<Guid> _childrenIds = null;
|
||||
|
||||
/// <summary>
|
||||
|
||||
Reference in New Issue
Block a user