diff --git a/Jellyfin.Plugin.JavTube/Providers/ActorProvider.cs b/Jellyfin.Plugin.JavTube/Providers/ActorProvider.cs index cfea3fd..4abef83 100644 --- a/Jellyfin.Plugin.JavTube/Providers/ActorProvider.cs +++ b/Jellyfin.Plugin.JavTube/Providers/ActorProvider.cs @@ -110,6 +110,7 @@ public class ActorProvider : BaseProvider, IRemoteMetadataProvider { + ("別名", a.Aliases?.Any() == true ? string.Join(", ", a.Aliases) : string.Empty), ("身長", a.Height > 0 ? a.Height.ToString() : string.Empty), ("趣味", a.Hobby), ("特技", a.Skill), @@ -118,7 +119,7 @@ public class ActorProvider : BaseProvider, IRemoteMetadataProvider !string.IsNullOrWhiteSpace(kvp.Item2)).Select(kvp => $"{kvp.Item1}:{kvp.Item2}")); + return string.Join("\n
\n", + info.Where(kvp => !string.IsNullOrWhiteSpace(kvp.Item2)).Select(kvp => $"{kvp.Item1}: {kvp.Item2}")); } } \ No newline at end of file