diff --git a/support/hololens/ServoApp/ServoControl/Servo.cpp b/support/hololens/ServoApp/ServoControl/Servo.cpp index 80a445468e5..eaaa3c61e6b 100644 --- a/support/hololens/ServoApp/ServoControl/Servo.cpp +++ b/support/hololens/ServoApp/ServoControl/Servo.cpp @@ -377,8 +377,13 @@ void Servo::GoHome() { ApplicationData::Current().LocalSettings(); auto prefs = localSettings.Containers().Lookup(L"servoUserPrefs"); auto home_pref = prefs.Values().Lookup(L"shell.homepage"); - auto home = - home_pref ? unbox_value(home_pref) : FALLBACK_DEFAULT_URL; + auto home = home_pref ? unbox_value(home_pref) : +#ifdef OVERRIDE_DEFAULT_URL + OVERRIDE_DEFAULT_URL +#else + FALLBACK_DEFAULT_URL +#endif + ; LoadUri(home); }