Fix check language

This commit is contained in:
cxfksword 2022-12-15 17:24:06 +08:00
parent 6cc53a4c92
commit da2ffec151
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ namespace Jellyfin.Plugin.MetaShark.Core
public static bool IsSameLanguage(this string s1, string s2)
{
return s1.IsChinese() && s2.IsChinese();
return s1.IsChinese() == s2.IsChinese();
}
public static double Distance(this string s1, string s2)