diff --git a/app/inputhelp.cpp b/app/inputhelp.cpp index d705df0db..776bd1197 100644 --- a/app/inputhelp.cpp +++ b/app/inputhelp.cpp @@ -182,7 +182,7 @@ bool InputHelp::submitReportPending() const QString InputHelp::fullLog( bool isHtml ) { - qint64 limit = 500000; + qint64 limit = 8000000; QVector retLines = logHeader( isHtml ); QFile file( CoreUtils::logFilename() ); @@ -258,7 +258,7 @@ QVector InputHelp::logHeader( bool isHtml ) void InputHelp::submitReport() { - // There is a limit of 1MB on the remote service, send less, let say half of that + // There is a limit of 10MB on the remote service, send less, let say 8MB QString log = fullLog( false ); QByteArray logArr = log.toUtf8(); QString app = QStringLiteral( "input-%1-%2" ).arg( InputUtils::appPlatform() ).arg( CoreUtils::appVersion() );