mirror of
https://github.com/metatube-community/jellyfin-plugin-metatube.git
synced 2026-05-05 10:24:01 +08:00
Add tag
This commit is contained in:
@@ -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);
|
||||
|
||||
Reference in New Issue
Block a user