Closed
Bug 35591
Opened 25 years ago
Closed 25 years ago
nothing works on the 3 pane toolbar, JS exception dumped to console.
Categories
(SeaMonkey :: MailNews: Message Display, defect, P1)
Tracking
(Not tracked)
VERIFIED
FIXED
People
(Reporter: sspitzer, Assigned: scottputterman)
Details
more details in a second.
Reporter | ||
Comment 1•25 years ago
|
||
this is a blocker bug. I'm checking in a fix.
Severity: normal → blocker
Priority: P3 → P1
Reporter | ||
Comment 2•25 years ago
|
||
as a stop gap, I checked this in:
Index: msgMail3PaneWindow.js
===================================================================
RCS file:
/cvsroot/mozilla/mailnews/base/resources/content/msgMail3PaneWindow.js,v
retrieving revision 1.70
retrieving revision 1.71
diff -r1.70 -r1.71
1194,1195c1194,1201
< var msgFolder =
folderResource.QueryInterface(Components.interfaces.nsIMsgFolder);
< return msgFolder;
---
> try {
> var msgFolder =
folderResource.QueryInterface(Components.interfaces.nsIMsgFolder);
> return msgFolder;
> }
> catch (ex) {
> dump(ex + "\n");
> dump("we know about this. see bug #35591\n");
> }
1222c1228
< }
\ No newline at end of file
---
> }
Reporter | ||
Comment 3•25 years ago
|
||
ok, this is fixed. turning from blocker into criticial, so that putterman will
take a look.
Severity: blocker → critical
Assignee | ||
Comment 4•25 years ago
|
||
First I don't think this bug made nothing work on the toolbar. That was a mouse
capture bug that mjudge fixed on the same day. However, the exception did
appear and I checked in a fix for it.
Status: NEW → RESOLVED
Closed: 25 years ago
Resolution: --- → FIXED
Reporter | ||
Comment 5•25 years ago
|
||
yeah, I probably saw the exception and just assumed that was it.
Updated•20 years ago
|
Product: Browser → Seamonkey
You need to log in
before you can comment on or make changes to this bug.
Description
•