diff --git a/src/Anilibria/Services/Implementations/AnilibriaApiService.cs b/src/Anilibria/Services/Implementations/AnilibriaApiService.cs index d0994d7..8912528 100644 --- a/src/Anilibria/Services/Implementations/AnilibriaApiService.cs +++ b/src/Anilibria/Services/Implementations/AnilibriaApiService.cs @@ -378,7 +378,7 @@ private async Task PerformActionFavorite ( long id , string action ) { /// Torrent path. public async Task DownloadTorrent ( string torrentUri ) { var storageFile = await ApplicationData.Current.TemporaryFolder.CreateFileAsync ( "release.torrent" , CreationCollisionOption.GenerateUniqueName ); - var byteArray = await m_HttpClient.GetByteArrayAsync ( m_WebSiteUrl + torrentUri ); + var byteArray = await m_HttpClient.GetByteArrayAsync ( m_ImageUploadUrl + torrentUri ); using ( Stream stream = await storageFile.OpenStreamForWriteAsync () ) { stream.Write ( byteArray , 0 , byteArray.Length );