Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
dkocher committed Sep 5, 2007
1 parent 64b3482 commit 1c2e339
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
2 changes: 1 addition & 1 deletion source/ch/cyberduck/ui/cocoa/CDTransferController.java
Original file line number Diff line number Diff line change
Expand Up @@ -620,7 +620,7 @@ public void finish() {
}

public void cleanup() {
if(transfer.isComplete() && !transfer.isCanceled()) {
if(transfer.isComplete() && !transfer.isCanceled() && !this.hasFailed()) {
if(transfer instanceof DownloadTransfer) {
Growl.instance().notify("Download complete", transfer.getName());
if(Preferences.instance().getBoolean("queue.postProcessItemWhenComplete")) {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -345,6 +345,7 @@ public void run() {
}

public boolean cancel() {
session().message(NSBundle.localizedString("Transfer incomplete", "Status", ""));
synchronized(lock) {
lock.notify();
}
Expand Down

0 comments on commit 1c2e339

Please sign in to comment.