Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions app/inputhelp.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -182,7 +182,7 @@ bool InputHelp::submitReportPending() const

QString InputHelp::fullLog( bool isHtml )
{
qint64 limit = 500000;
qint64 limit = 8000000;
QVector<QString> retLines = logHeader( isHtml );

QFile file( CoreUtils::logFilename() );
Expand Down Expand Up @@ -258,7 +258,7 @@ QVector<QString> 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() );
Expand Down
Loading