diff --git a/src/gui/qt-daemon/application/urleventfilter.cpp b/src/gui/qt-daemon/application/urleventfilter.cpp index 3fb1b24d..910b10f4 100644 --- a/src/gui/qt-daemon/application/urleventfilter.cpp +++ b/src/gui/qt-daemon/application/urleventfilter.cpp @@ -7,11 +7,13 @@ bool URLEventFilter::eventFilter(QObject *obj, QEvent *event) QFileOpenEvent *fileEvent = static_cast(event); if(!fileEvent->url().isEmpty()) { - m_pmainwindow->handle_deeplink_click(fileEvent->url()); + m_pmainwindow->handle_deeplink_click(fileEvent->url().toString()); //QMessageBox msg; //msg.setText(fileEvent->url().toString()); //msg.exec(); + return true; } + return true; } else { // standard event processing return QObject::eventFilter(obj, event);