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

@ -20,7 +20,6 @@ void ReadingListInfoControllerV2::service(HttpRequest &request, HttpResponse &re
QString path = QUrl::fromPercentEncoding(request.getPath()).toUtf8();
QStringList pathElements = path.split('/');
int libraryId = pathElements.at(3).toInt();
QString libraryName = DBHelper::getLibraryName(libraryId);
qulonglong listId = pathElements.at(5).toULongLong();
serviceComics(libraryId, listId, response);