This commit is contained in:
xjasonlyu
2022-06-17 15:14:17 +08:00
parent b3b4a7238c
commit 3f535dc2ef

View File

@@ -85,6 +85,10 @@ public class MovieProvider : BaseProvider, IRemoteMetadataProvider<Movie, MovieI
if (m.Tags?.Length > 0)
result.Item.SetGenres(m.Tags);
// Add Tag.
if (!string.IsNullOrWhiteSpace(m.Label))
result.Item.AddTag(m.Label);
// Add Studio.
if (!string.IsNullOrWhiteSpace(m.Maker))
result.Item.AddStudio(m.Maker);