You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I don't know enough about the code the understand what was going wrong for me but on line 1152 of firebug-lite.js in version 1.4.0 the variable url was coming in as an Object rather than as a string and so the method url.indexOf was undefined:
I don't know enough about the code the understand what was going wrong for me but on line 1152 of firebug-lite.js in version 1.4.0 the variable
url
was coming in as anObject
rather than as astring
and so the methodurl.indexOf
was undefined:A patch was to always ensure that
url
was a string before callingindexOf
(i.e.url.toString().indexOf
):Sorry for not knowing being able to say why this was happening but I thought it better to report in any case.
And thanks for a great piece of software.
The text was updated successfully, but these errors were encountered: