[Greasemonkey] Fx1.5 Gm0.6.4: undefined property details.data

Matthias Bauer ml-greasemonkey-42imk83y at moeffju.net
Wed Dec 7 17:27:42 EST 2005


If you're getting this error in GM 0.6.4 when using GM_xhr:

Warning: reference to undefined property details.data
Source file: chrome://greasemonkey/content/xmlhttprequester.js
Line: 72

add a null property 'data' to your request object, like so:

GM_xmlHttpRequest({
  ...
  data:null,
  ...
});

Aaron, did this break just now? Or was I blind before?


-Matt


More information about the Greasemonkey mailing list