diff --git a/dashboard-ui/addplugin.html b/dashboard-ui/addplugin.html
index 52395cc0cf..e033c5a63e 100644
--- a/dashboard-ui/addplugin.html
+++ b/dashboard-ui/addplugin.html
@@ -63,7 +63,7 @@
-
+
", $("#regStatus", page).html(regStatus), pluginSecurityInfo.IsMBSupporter)
if ($(".premiumDescription", page).hide(), $(".supporterDescription", page).hide(), pkg.price > 0) {
$(".premiumHasPrice", page).show(), $("#featureId", page).val(pkg.featureId), $("#featureName", page).val(pkg.name), $("#amount", page).val(pkg.price), $("#regPrice", page).html("" + globalize.translate("ValuePriceUSD").replace("{0}", "$" + pkg.price.toFixed(2)) + "
"), $("#ppButton", page).hide();
- var url = "https://mb3admin.com/admin/service/user/getPayPalEmail?id=" + pkg.owner;
+ var url = "https://mb3admin.local/admin/service/user/getPayPalEmail?id=" + pkg.owner;
fetch(url).then(function(response) {
return response.json()
}).then(function(dev) {
diff --git a/dashboard-ui/scripts/supporterkeypage.js b/dashboard-ui/scripts/supporterkeypage.js
index 415934da74..bf0902d220 100644
--- a/dashboard-ui/scripts/supporterkeypage.js
+++ b/dashboard-ui/scripts/supporterkeypage.js
@@ -38,7 +38,7 @@ define(["fetchHelper", "dom", "registrationServices", "loading", "confirm", "glo
function getPremiereStatus(key) {
var postData = "key=" + key + "&serverId=" + ApiClient.serverId();
return fetchHelper.ajax({
- url: "https://mb3admin.com/admin/service/registration/getStatus",
+ url: "https://mb3admin.local/admin/service/registration/getStatus",
type: "POST",
data: postData,
contentType: "application/x-www-form-urlencoded",
@@ -69,7 +69,7 @@ define(["fetchHelper", "dom", "registrationServices", "loading", "confirm", "glo
console.log("after confirm");
var postData = "key=" + key + "&feature=" + feature;
fetchHelper.ajax({
- url: "https://mb3admin.com/admin/service/stripe/requestSubCancel",
+ url: "https://mb3admin.local/admin/service/stripe/requestSubCancel",
type: "POST",
data: postData,
contentType: "application/x-www-form-urlencoded"
@@ -90,7 +90,7 @@ define(["fetchHelper", "dom", "registrationServices", "loading", "confirm", "glo
loading.show();
var form = this,
email = form.querySelector("#txtEmail").value,
- url = "https://mb3admin.com/admin/service/supporter/retrievekey?email=" + email;
+ url = "https://mb3admin.local/admin/service/supporter/retrievekey?email=" + email;
return console.log(url), fetchHelper.ajax({
url: url,
type: "POST",