Fix Deluge service crashing when download is not found (#97)
This commit is contained in:
@@ -80,11 +80,24 @@ public sealed class DelugeClient
|
|||||||
|
|
||||||
public async Task<TorrentStatus?> GetTorrentStatus(string hash)
|
public async Task<TorrentStatus?> GetTorrentStatus(string hash)
|
||||||
{
|
{
|
||||||
return await SendRequest<TorrentStatus?>(
|
try
|
||||||
"web.get_torrent_status",
|
{
|
||||||
hash,
|
return await SendRequest<TorrentStatus?>(
|
||||||
Fields
|
"web.get_torrent_status",
|
||||||
);
|
hash,
|
||||||
|
Fields
|
||||||
|
);
|
||||||
|
}
|
||||||
|
catch (DelugeClientException e)
|
||||||
|
{
|
||||||
|
// Deluge returns an error when the torrent is not found
|
||||||
|
if (e.Message == "AttributeError: 'NoneType' object has no attribute 'call'")
|
||||||
|
{
|
||||||
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
|
throw;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
public async Task<List<TorrentStatus>?> GetStatusForAllTorrents()
|
public async Task<List<TorrentStatus>?> GetStatusForAllTorrents()
|
||||||
|
|||||||
Reference in New Issue
Block a user