From 6a82f296ac8347fbc5f4da160b5a21c1a10eb97a Mon Sep 17 00:00:00 2001 From: Sebastian Hengst Date: Thu, 29 Mar 2018 00:28:11 +0200 Subject: [PATCH] Update host for bugzilla configuration url --- src/index.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/index.js b/src/index.js index 0abf95c..2691e3b 100644 --- a/src/index.js +++ b/src/index.js @@ -270,7 +270,7 @@ export var BugzillaClient = class { let that = this; var req = new XMLHttpRequest(); - req.open('GET', 'https://api-dev.bugzilla.mozilla.org/latest/configuration', true); + req.open('GET', 'https://bugzilla.mozilla.org/latest/configuration', true); req.setRequestHeader("Accept", "application/json"); req.onreadystatechange = function (event) { if (req.readyState == 4 && req.status != 0) {