Server controllers: remove unused libraryName variable

This commit is contained in:
Igor Kushnir
2021-02-05 17:40:58 +02:00
parent 0925771f05
commit f60e17674e
7 changed files with 0 additions and 11 deletions

View File

@ -21,7 +21,6 @@ void UpdateComicControllerV2::service(HttpRequest &request, HttpResponse &respon
QString path = QUrl::fromPercentEncoding(request.getPath()).toUtf8();
QStringList pathElements = path.split('/');
qulonglong libraryId = pathElements.at(3).toULongLong();
QString libraryName = DBHelper::getLibraryName(libraryId);
qulonglong comicId = pathElements.at(5).toULongLong();
QString postData = QString::fromUtf8(request.getBody());