Closed
Bug 1140687
Opened 10 years ago
Closed 10 years ago
"Remove Attachment" over a currently-uploading Filelink doesn't cancel the upload.
Categories
(Thunderbird :: FileLink, defect)
Tracking
(thunderbird38 fixed)
RESOLVED
FIXED
Thunderbird 39.0
Tracking | Status | |
---|---|---|
thunderbird38 | --- | fixed |
People
(Reporter: diegocr, Assigned: diegocr, Mentored)
Details
(Whiteboard: [good first bug][lang=js])
Attachments
(1 file, 1 obsolete file)
1.83 KB,
patch
|
mkmelin
:
review+
rkent
:
approval-comm-aurora+
rkent
:
approval-comm-esr31-
|
Details | Diff | Splinter Review |
The summary says it all, basically.
When we use "Remove Attachment" over a Filelink attachment which hasn't finished uploading causes the attachment to get removed, but the file continues uploading in the background, and once it completes it throws the following exception:
Error: [Exception... "[JavaScript Error: "attachmentItem is null" {file: "chrome://messenger/content/messengercompose/MsgComposeCommands.js" line: 1248}]'[JavaScript Error: "attachmentItem is null" {file: "chrome://messenger/content/messengercompose/MsgComposeCommands.js" line: 1248}]' when calling method: [nsIRequestObserver::onStopRequest]" nsresult: "0x80570021 (NS_ERROR_XPC_JAVASCRIPT_ERROR_WITH_DETAILS)" location: "JS frame :: resource://gre/components/nsBox.js :: nsBox__uploaderCallback :: line 155" data: yes]
Source File: resource://gre/modules/Http.jsm
Line: 73
Using "Cancel Upload" and then "Remove Attachment" works fine. Hence, Thunderbird should send a cancel request to the Filelink component on removing (currently-uploading) attachments.
Comment 1•10 years ago
|
||
cancelFileUpload: http://mxr.mozilla.org/comm-central/source/mail/components/cloudfile/nsIMsgCloudFileProvider.idl#50
Mentor: mkmelin+mozilla
Whiteboard: [good first bug][lang=js]
Updated•10 years ago
|
Severity: major → normal
Assignee | ||
Comment 2•10 years ago
|
||
This patch is supposed to fix the issue, however on re-packaging omni.ja with that new MsgComposeCommands.js it does nothing... I.e looks like RemoveSelectedAttachment() isn't even called (placed a Services.prompt there..) :-/
--- MsgComposeCommands-orig.js 2010-01-01 00:00:00.000000000 +0100
+++ MsgComposeCommands.js 2015-03-07 20:32:06.235980800 +0100
@@ -3768,6 +3768,10 @@ function RemoveSelectedAttachment()
item.cloudProvider.deleteFile(
file, new deletionListener(item.attachment, item.cloudProvider));
}
+ if (item.cloudProvider && item.uploading) {
+ let file = fileHandler.getFileFromURLSpec(item.originalUrl);
+ item.cloudProvider.cancelFileUpload(file);
+ }
removedAttachments.appendElement(item.attachment, false);
// Let's release the attachment object held by the node else it won't go
Assignee | ||
Comment 3•10 years ago
|
||
Got the problem from my former patch attempt, `originalUrl` is not set if the file hasn't finished uploading, so my block was never reached since it was throwing on the previous getFileFromURLSpec()
I've now merged both blocks into a single one, checking for originalUrl and falling back to `item.attachment.url` -- it have been tested and works like a charm.
Attachment #8574330 -
Flags: review?(mkmelin+mozilla)
Updated•10 years ago
|
Assignee: nobody → dcasorran
Status: NEW → ASSIGNED
Comment 4•10 years ago
|
||
Made it an hg diff. Seems to work, I've sent it to try to see if there's anything unexpected - https://treeherder.mozilla.org/#/jobs?repo=try-comm-central&revision=08ea49ca96d0
Attachment #8574330 -
Attachment is obsolete: true
Attachment #8574330 -
Flags: review?(mkmelin+mozilla)
Attachment #8578257 -
Flags: review?(mkmelin+mozilla)
Updated•10 years ago
|
Attachment #8578257 -
Flags: review?(mkmelin+mozilla) → review+
Comment 6•10 years ago
|
||
Comment on attachment 8578257 [details] [diff] [review]
bug1140687_filelink_remove_attachment.patch
[Approval Request Comment]
We'll try it in nightly, then aurora, and consider later for esr31
http://hg.mozilla.org/comm-central/rev/c5a68209251d
Attachment #8578257 -
Flags: approval-comm-esr31?
Attachment #8578257 -
Flags: approval-comm-aurora?
Updated•10 years ago
|
Status: ASSIGNED → RESOLVED
Closed: 10 years ago
Keywords: checkin-needed
Resolution: --- → FIXED
Target Milestone: --- → Thunderbird 39.0
Comment 7•10 years ago
|
||
Comment on attachment 8578257 [details] [diff] [review]
bug1140687_filelink_remove_attachment.patch
https://hg.mozilla.org/releases/comm-aurora/rev/baeed39cdc3c
Attachment #8578257 -
Flags: approval-comm-aurora? → approval-comm-aurora+
Updated•10 years ago
|
status-thunderbird38:
--- → fixed
Comment 8•10 years ago
|
||
Comment on attachment 8578257 [details] [diff] [review]
bug1140687_filelink_remove_attachment.patch
Not critical enough to uplift with 38.0 so close.
Attachment #8578257 -
Flags: approval-comm-esr31? → approval-comm-esr31-
You need to log in
before you can comment on or make changes to this bug.
Description
•