mirror of
https://github.com/Jackett/Jackett
synced 2024-12-29 11:17:22 +00:00
Fixed blocking query in ShowRSS
This commit is contained in:
parent
f16ebe06df
commit
0c49540671
1 changed files with 1 additions and 1 deletions
|
@ -130,7 +130,7 @@ namespace Jackett.Indexers
|
|||
{
|
||||
using (wc)
|
||||
{
|
||||
xml = wc.DownloadString(episodeSearchUrl);
|
||||
xml = await wc.DownloadStringTaskAsync(new Uri(episodeSearchUrl));
|
||||
xmlDoc.LoadXml(xml);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in a new issue