mirror of
https://github.com/idanoo/autobrr
synced 2025-07-23 00:39:13 +00:00
fix(downloadclients): arrs change size type to uint64 (#1744)
* fix(downloadclients): arrs change size type to uint64 * fix(downloadclients): check resp.Body
This commit is contained in:
parent
e9726363b4
commit
bf7e1381ac
15 changed files with 98 additions and 10 deletions
|
@ -34,7 +34,7 @@ func (s *service) sonarr(ctx context.Context, action *domain.Action, release dom
|
|||
InfoUrl: release.InfoURL,
|
||||
DownloadUrl: release.DownloadURL,
|
||||
MagnetUrl: release.MagnetURI,
|
||||
Size: int64(release.Size),
|
||||
Size: release.Size,
|
||||
Indexer: release.Indexer.GetExternalIdentifier(),
|
||||
DownloadClientId: client.Settings.ExternalDownloadClientId,
|
||||
DownloadClient: client.Settings.ExternalDownloadClient,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue