diff --git a/interface/src/Application.cpp b/interface/src/Application.cpp index 13a94ebebf..9963706d97 100644 --- a/interface/src/Application.cpp +++ b/interface/src/Application.cpp @@ -810,10 +810,7 @@ bool Application::event(QEvent* event) { // handle custom URL if (event->type() == QEvent::FileOpen) { QFileOpenEvent* fileEvent = static_cast(event); - bool isHifiSchemeURL = !fileEvent->url().isEmpty() && fileEvent->url().toLocalFile().startsWith(HIFI_URL_SCHEME); - if (isHifiSchemeURL) { - AddressManager::getInstance().handleLookupString(fileEvent->url().toLocalFile()); - } + AddressManager::getInstance().handleLookupString(fileEvent->url().toLocalFile()); return false; } return QApplication::event(event);