aboutsummaryrefslogtreecommitdiff
path: root/Assistant/TransferSlots.hs
diff options
context:
space:
mode:
Diffstat (limited to 'Assistant/TransferSlots.hs')
-rw-r--r--Assistant/TransferSlots.hs9
1 files changed, 5 insertions, 4 deletions
diff --git a/Assistant/TransferSlots.hs b/Assistant/TransferSlots.hs
index 25342f2b3..c80cf880a 100644
--- a/Assistant/TransferSlots.hs
+++ b/Assistant/TransferSlots.hs
@@ -153,10 +153,11 @@ genTransfer t info = case transferRemote info of
-}
go remote transferrer = ifM (liftIO $ performTransfer transferrer t info)
( do
- maybe noop
- (void . addAlert . makeAlertFiller True
- . transferFileAlert direction True)
- (associatedFile info)
+ case associatedFile info of
+ AssociatedFile Nothing -> noop
+ AssociatedFile (Just af) -> void $
+ addAlert $ makeAlertFiller True $
+ transferFileAlert direction True af
unless isdownload $
handleDrops
("object uploaded to " ++ show remote)