aboutsummaryrefslogtreecommitdiffstats
path: root/lib/rhbzpage.js
diff options
context:
space:
mode:
authorMatěj Cepl <mcepl@redhat.com>2010-07-19 22:17:31 +0200
committerMatěj Cepl <mcepl@redhat.com>2010-07-19 22:17:31 +0200
commit5405da4f392988c0d396afd33be049ae64045c63 (patch)
treeac75faf8835a2b3f6456c549b9673cd03cdeeba5 /lib/rhbzpage.js
parent8db90e886bc25f382145a3af543959021851e5cd (diff)
downloadbugzilla-triage-5405da4f392988c0d396afd33be049ae64045c63.tar.gz
URL for XML-RPC is in the property .url, not directly in XMLRPCData
Diffstat (limited to 'lib/rhbzpage.js')
-rw-r--r--lib/rhbzpage.js2
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/rhbzpage.js b/lib/rhbzpage.js
index f68bf38..7dff883 100644
--- a/lib/rhbzpage.js
+++ b/lib/rhbzpage.js
@@ -814,7 +814,7 @@ RHBugzillaPage.prototype.fixAttachById = function(id, type, email) {
// docs/en/html/api/extensions/compat_xmlrpc/code/webservice.html
// test on https://bugzilla.redhat.com/show_bug.cgi?id=485145
Request({
- url: this.constantData.XMLRPCData[this.hostname],
+ url: this.constantData.XMLRPCData[this.hostname].url,
onComplete: function() {
that.fixingMIMECallBack.call(that);
},