Make update type for RunTimeTicks consistent with other file attributes

This commit is contained in:
Joe Rogers 2023-02-12 23:14:43 -05:00
parent 2d2b0a528c
commit 4ce30989e0
No known key found for this signature in database
GPG key ID: 0074AD57B8FDBBB4

View file

@ -381,7 +381,7 @@ namespace MediaBrowser.Providers.Manager
if (!folder.RunTimeTicks.HasValue || folder.RunTimeTicks.Value != ticks)
{
folder.RunTimeTicks = ticks;
return ItemUpdateType.MetadataEdit;
return ItemUpdateType.MetadataImport;
}
}