Applied Review Suggestions

This commit is contained in:
JPVenson
2024-10-10 15:27:13 +00:00
parent f58a24f005
commit 441b995189
6 changed files with 15 additions and 31 deletions

View File

@@ -1,4 +1,5 @@
using System;
using System.Collections.Frozen;
using System.Collections.Generic;
using System.Threading.Channels;
using Emby.Server.Implementations.Playlists;
@@ -116,5 +117,5 @@ public class ItemTypeLookup : IItemTypeLookup
{ BaseItemKind.UserView, typeof(UserView).FullName },
{ BaseItemKind.Video, typeof(Video).FullName },
{ BaseItemKind.Year, typeof(Year).FullName }
}.AsReadOnly();
}.ToFrozenDictionary();
}