Specify UTF-8 charset when forming data from plain text

This suppresses a browser warning about unspecified character encoding
of an HTTP response.
This commit is contained in:
Chocobo1 2020-09-07 11:41:03 +08:00
parent 2c01ac4b75
commit 2f1016494b
No known key found for this signature in database
GPG key ID: 210D9C873253A68C
2 changed files with 3 additions and 3 deletions

View file

@ -63,7 +63,7 @@ namespace Http
const char CONTENT_TYPE_HTML[] = "text/html";
const char CONTENT_TYPE_CSS[] = "text/css";
const char CONTENT_TYPE_TXT[] = "text/plain";
const char CONTENT_TYPE_TXT[] = "text/plain; charset=UTF-8";
const char CONTENT_TYPE_JS[] = "application/javascript";
const char CONTENT_TYPE_JSON[] = "application/json";
const char CONTENT_TYPE_GIF[] = "image/gif";

View file

@ -601,9 +601,9 @@ void TorrentsController::addAction()
}
if (partialSuccess)
setResult("Ok.");
setResult(QLatin1String("Ok."));
else
setResult("Fails.");
setResult(QLatin1String("Fails."));
}
void TorrentsController::addTrackersAction()