mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-03-02 00:12:24 +00:00
Do not assign an invalid value of zero to ExtraType
This commit is contained in:
@@ -1327,8 +1327,9 @@ namespace MediaBrowser.Controller.Entities
|
||||
}
|
||||
|
||||
// Use some hackery to get the extra type based on foldername
|
||||
Enum.TryParse(extraFolderName.Replace(" ", ""), true, out ExtraType extraType);
|
||||
item.ExtraType = extraType;
|
||||
item.ExtraType = Enum.TryParse(extraFolderName.Replace(" ", ""), true, out ExtraType extraType)
|
||||
? extraType
|
||||
: (ExtraType?)null;
|
||||
|
||||
return item;
|
||||
|
||||
|
||||
Reference in New Issue
Block a user