We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0efcc66 commit 99659abCopy full SHA for 99659ab
Emby.Plugins.JavScraper/JavPersonProvider.cs
@@ -82,7 +82,7 @@ public async Task<MetadataResult<Person>> GetMetadata(PersonLookupInfo info, Can
82
83
_logger?.Info($"{nameof(GetMetadata)} info:{_jsonSerializer.SerializeToString(info)}");
84
85
- if ((index = info.GetJavPersonIndex(_jsonSerializer)) == null || !index.Url.IsWebUrl())
+ if ((index = info.GetJavPersonIndex(_jsonSerializer)) == null || index.Url?.Contains("xslist.org", StringComparison.OrdinalIgnoreCase) != true || !index.Url.IsWebUrl())
86
{
87
var res = await GetSearchResults(info, cancellationToken).ConfigureAwait(false);
88
if (res.Count() == 0 || (index = res.FirstOrDefault().GetJavPersonIndex(_jsonSerializer)) == null)
0 commit comments