From: Kevin Ottens Date: Mon, 5 Oct 2020 17:45:47 +0000 (+0200) Subject: Also add the command line arguments in the archive X-Git-Tag: archive/raspbian/3.16.7-1_deb13u1+rpi1~1^2~12^2~22^2~121^2~1 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=8ce137cc5358be3ac56635360c38fd6c12aaba71;p=nextcloud-desktop.git Also add the command line arguments in the archive Signed-off-by: Kevin Ottens --- 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()); } }