Use compact json in responses.

This commit is contained in:
Luis Ángel San Martín
2018-04-26 18:26:44 +02:00
parent 87b0e64b1a
commit 30211233af
7 changed files with 7 additions and 7 deletions

View File

@ -73,7 +73,7 @@ void FolderContentControllerV2::serviceContent(const int &library, const qulongl
QJsonDocument output(items);
response.write(output.toJson());
response.write(output.toJson(QJsonDocument::Compact));
#ifdef QT_DEBUG
auto done = std::chrono::high_resolution_clock::now();