Skip to content
Snippets Groups Projects
Commit 6941c3d3 authored by Thulinma's avatar Thulinma
Browse files

Fix --help and --version command line options when Nheko is already running....

Fix --help and --version command line options when Nheko is already running. Also adds an info message when it sends a URI to another instance
parent 2d59d53e
No related branches found
No related tags found
No related merge requests found
......@@ -176,12 +176,6 @@ main(int argc, char *argv[])
100,
userdata);
if (app.isSecondary()) {
// open uri in main instance
app.sendMessage(matrixUri.toUtf8());
return 0;
}
QCommandLineParser parser;
parser.addHelpOption();
parser.addVersionOption();
......@@ -202,6 +196,15 @@ main(int argc, char *argv[])
parser.process(app);
// This check needs to happen _after_ process(), so that we actually print help for --help when
// Nheko is already running.
if (app.isSecondary()) {
nhlog::ui()->info("Sending Matrix URL to main application: {}", matrixUri.toStdString());
// open uri in main instance
app.sendMessage(matrixUri.toUtf8());
return 0;
}
app.setWindowIcon(QIcon::fromTheme("nheko", QIcon{":/logos/nheko.png"}));
http::init();
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment