diff --git a/interface/src/ui/LoginDialog.cpp b/interface/src/ui/LoginDialog.cpp
index 004f863901..4e7a4a7dc9 100644
--- a/interface/src/ui/LoginDialog.cpp
+++ b/interface/src/ui/LoginDialog.cpp
@@ -23,7 +23,7 @@
#include "LoginDialog.h"
#include "UIUtil.h"
-const QString FORGOT_PASSWORD_URL = "https://metaverse.highfidelity.io/users/password/new";
+const QString FORGOT_PASSWORD_URL = "https://metaverse.highfidelity.com/users/password/new";
LoginDialog::LoginDialog(QWidget* parent) :
FramelessDialog(parent, 0, FramelessDialog::POSITION_TOP),
diff --git a/interface/ui/loginDialog.ui b/interface/ui/loginDialog.ui
index c986db7f50..58ff353a16 100644
--- a/interface/ui/loginDialog.ui
+++ b/interface/ui/loginDialog.ui
@@ -136,7 +136,7 @@
<style type="text/css">
a { text-decoration: none; color: #267077;}
</style>
-Invalid username or password. <a href="https://metaverse.highfidelity.io/password/new">Recover?</a>
+Invalid username or password. <a href="https://metaverse.highfidelity.com/password/new">Recover?</a>
Qt::AlignLeading|Qt::AlignLeft|Qt::AlignVCenter
@@ -458,7 +458,7 @@ border-radius: 4px; padding-top: 1px;
<style type="text/css">
a { text-decoration: none; color: #267077;}
</style>
-<a href="https://metaverse.highfidelity.io/password/new">Recover password?</a>
+<a href="https://metaverse.highfidelity.com/password/new">Recover password?</a>
true
diff --git a/libraries/networking/src/LimitedNodeList.cpp b/libraries/networking/src/LimitedNodeList.cpp
index 98e1ed0572..ebd10b67a6 100644
--- a/libraries/networking/src/LimitedNodeList.cpp
+++ b/libraries/networking/src/LimitedNodeList.cpp
@@ -36,7 +36,7 @@ const char SOLO_NODE_TYPES[2] = {
NodeType::AudioMixer
};
-const QUrl DEFAULT_NODE_AUTH_URL = QUrl("https://metaverse.highfidelity.io");
+const QUrl DEFAULT_NODE_AUTH_URL = QUrl("https://metaverse.highfidelity.com");
LimitedNodeList::LimitedNodeList(unsigned short socketListenPort, unsigned short dtlsListenPort) :
linkedDataCreateCallback(NULL),
diff --git a/libraries/script-engine/src/XMLHttpRequestClass.cpp b/libraries/script-engine/src/XMLHttpRequestClass.cpp
index 116548db61..8755527860 100644
--- a/libraries/script-engine/src/XMLHttpRequestClass.cpp
+++ b/libraries/script-engine/src/XMLHttpRequestClass.cpp
@@ -207,7 +207,7 @@ void XMLHttpRequestClass::open(const QString& method, const QString& url, bool a
notImplemented();
}
} else {
- if (url.toLower().left(33) == "https://metaverse.highfidelity.io/api/") {
+ if (url.toLower().left(33) == "https://metaverse.highfidelity.com/api/") {
AccountManager& accountManager = AccountManager::getInstance();
if (accountManager.hasValidAccessToken()) {