mirror of
https://github.com/aleksilassila/reiverr.git
synced 2026-04-22 16:55:13 +02:00
feat: Make Radarr optional and some improvements to optional integrations
This commit is contained in:
@@ -69,10 +69,10 @@
|
||||
function handleDownload(guid: string) {
|
||||
downloadFetchingGuid = guid;
|
||||
if (radarrId) {
|
||||
downloadRadarrMovie(guid).then((res) => {
|
||||
downloadRadarrMovie(guid).then((ok) => {
|
||||
dispatch('download');
|
||||
downloadFetchingGuid = undefined;
|
||||
if (res.response?.ok) {
|
||||
if (ok) {
|
||||
downloadingGuid = guid;
|
||||
}
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user