Fix Chinese language support

This commit is contained in:
Reinhard Pointner 2017-03-13 16:29:45 +08:00
parent b5af78713a
commit 458c3630de
1 changed files with 5 additions and 5 deletions

View File

@ -94,12 +94,12 @@ public final class WebServices {
}
public static VideoHashSubtitleService[] getVideoHashSubtitleServices(Locale locale) {
// special support for 射手网 for Chinese language subtitles
if (locale.equals(Locale.CHINESE)) {
return new VideoHashSubtitleService[] { OpenSubtitles, Shooter };
switch (locale.getLanguage()) {
case "zh":
return new VideoHashSubtitleService[] { OpenSubtitles, Shooter }; // special support for 射手网 for Chinese language subtitles
default:
return new VideoHashSubtitleService[] { OpenSubtitles };
}
return new VideoHashSubtitleService[] { OpenSubtitles };
}
public static Datasource getService(String name) {