mirror of
https://github.com/jellyfin/jellyfin.git
synced 2026-07-16 03:03:40 +01:00
Fix multiple mistakes and warnings
This commit is contained in:
@@ -31,7 +31,7 @@ namespace MediaBrowser.XbmcMetadata.Savers
|
||||
|
||||
/// <inheritdoc />
|
||||
public override bool IsEnabledFor(BaseItem item, ItemUpdateType updateType)
|
||||
=> !item.SupportsLocalMetadata && item is Episode && updateType >= MinimumUpdateType;
|
||||
=> item.SupportsLocalMetadata && item is Episode && updateType >= MinimumUpdateType;
|
||||
|
||||
/// <inheritdoc />
|
||||
protected override void WriteCustomElements(BaseItem item, XmlWriter writer)
|
||||
|
||||
Reference in New Issue
Block a user