Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/desktop.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/src/gui
diff options
context:
space:
mode:
authorKevin Ottens <kevin.ottens@nextcloud.com>2020-10-05 20:45:47 +0300
committerMichael Schuster (Rebase PR Action) <misch7@users.noreply.github.com>2020-10-07 16:33:20 +0300
commit8ce137cc5358be3ac56635360c38fd6c12aaba71 (patch)
tree45dc1b0d5b12d9818ea6d6dd8a58bdc8eb8c9d5d /src/gui
parent8fb673457b42e9bf37562568410a7382ed50448d (diff)
Also add the command line arguments in the archive
Signed-off-by: Kevin Ottens <kevin.ottens@nextcloud.com>
Diffstat (limited to 'src/gui')
-rw-r--r--src/gui/generalsettings.cpp2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/gui/generalsettings.cpp b/src/gui/generalsettings.cpp
index f910601ac..804a9974d 100644
--- a/src/gui/generalsettings.cpp
+++ b/src/gui/generalsettings.cpp
@@ -123,6 +123,8 @@ void createDebugArchive(const QString &filename)
zip.addFile(entry.zipFilename, &file);
}
}
+
+ zip.addFile("__nextcloud_client_parameters.txt", QCoreApplication::arguments().join(' ').toUtf8());
}
}