Open GoogleCodeExporter opened 9 years ago
More information:
The crash only appears to happen when MPM tries to successfully connect to a
MPD server. All the windows, preferences, etc, seem to work fine when the MPD
server is not available.
When trying to connect to a MPD server, it crashes with these two errors:
Error: this.docShell is null
Source File: chrome://global/content/bindings/browser.xml
Line: 323
Error: TypeError: aUrl is undefined
Source File: chrome://browser/content/urlbarBindings.xml
Line: 642
Original comment by samon...@gmail.com
on 9 Jan 2013 at 10:31
I have the same issue on Firefox 18 and Windows 8. On Firefox 18 and Debian it
is OK.
On W8 it starts to crash when browsing files.
Original comment by vasiliev...@gmail.com
on 7 Feb 2013 at 9:30
I don't know what's musicpm (sorry), but know one of your bugs.
With clean firefox installation, without opening any new tab,
after leaving urlbar i got this error message in error console:
("Error: TypeError: aUrl is undefined
Source file: chrome://browser/content/urlbarBindings.xml
Line: 642
")
It's still in firefox 21.0a1, remember it since few relases ago,
now just confirming it.
Firefox source file: chrome://browser/content/urlbarBindings.xml:
<method name="_parseActionUrl">
<parameter name="aUrl"/>
<body><![CDATA[
if (!aUrl.startsWith("moz-action:"))
return null;
// url is in the format moz-action:ACTION,PARAM
let [, action, param] = aUrl.match(/^moz-action:([^,]+),(.*)$/);
return {type: action, param: param};
]]></body>
</method>
probably shall be:
<method name="_parseActionUrl">
<parameter name="aUrl"/>
<body><![CDATA[
if (!aUrl || !aUrl.startsWith("moz-action:"))
return null;
// url is in the format moz-action:ACTION,PARAM
let [, action, param] = aUrl.match(/^moz-action:([^,]+),(.*)$/);
return {type: action, param: param};
]]></body>
</method>
https://bugzilla.mozilla.org/ is right place to solve it,
providing accurate information - what probably I may do
one day..
Original comment by vir...@inbox.com
on 13 Feb 2013 at 1:42
There is actually bug for that:
Bug 829197 - Various weird warnings on startup
https://bugzilla.mozilla.org/show_bug.cgi?id=829197
Original comment by vir...@inbox.com
on 13 Feb 2013 at 2:05
It seems that it was a Firefox bug after all since MPM started working again
with FF 19.0.2
Original comment by samon...@gmail.com
on 20 Mar 2013 at 5:43
Original issue reported on code.google.com by
samon...@gmail.com
on 8 Jan 2013 at 7:21