Your ROOT_URL in app.ini is https://git.cloudchain.link/ but you are visiting https://dash.bss.nz/open-source-mirrors/jellyfin/commit/388e87a349939b525e32473a04a4b9506602d304?style=unified&whitespace=ignore-eol You should set ROOT_URL correctly, otherwise the web may not work correctly.

async open subtitles

pull/702/head
Luke Pulverenti 11 years ago
parent b25bc74a7d
commit 388e87a349

@ -225,7 +225,7 @@ namespace MediaBrowser.Providers.Subtitles
imdbid: searchImdbId ),
};
parms.AddRange(subtitleSearchParameters);
var result = OpenSubtitles.SearchSubtitles(parms.ToArray());
var result = await OpenSubtitles.SearchSubtitlesAsync(parms.ToArray(), cancellationToken).ConfigureAwait(false);
if (!(result is MethodResponseSubtitleSearch))
{
_logger.Debug("Invalid response type");

Loading…
Cancel
Save