diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index c3222b9761..6a9f5936c8 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -1453,8 +1453,8 @@ Application::Application( // If someone specifies both --avatarURL and --replaceAvatarURL, // the replaceAvatarURL wins. So only set the _overrideUrl if this // does have a non-empty string. - if (parser.isSet("replace-avatar-url")) { - QString replaceURL = parser.value("replace-avatar-url"); + if (parser.isSet("replaceAvatarURL")) { + QString replaceURL = parser.value("replaceAvatarURL"); _avatarOverrideUrl = QUrl::fromUserInput(replaceURL); _saveAvatarOverrideUrl = true; } diff --git a/interface/src/main.cpp b/interface/src/main.cpp index e18312f8b7..44cef0f242 100644 --- a/interface/src/main.cpp +++ b/interface/src/main.cpp @@ -161,7 +161,7 @@ int main(int argc, const char* argv[]) { "url" ); QCommandLineOption replaceAvatarURLOption( - "replace-avatar-url", + "replaceAvatarURL", "Replaces the avatar U.R.L. When used with --avatarURL, this takes precedence.", "url" );