1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-01-22 20:44:15 +00:00

Throw error exception properly

This commit is contained in:
Chocobo1 2022-08-26 17:21:43 +08:00
parent 3851e76179
commit e06e1d9911
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C

View File

@ -155,11 +155,7 @@ void WebApplication::sendWebUIFile()
if (m_isAltUIUsed)
{
if (!Utils::Fs::isRegularFile(localPath))
{
status(500, u"Internal Server Error"_qs);
print(tr("Unacceptable file type, only regular file is allowed."), Http::CONTENT_TYPE_TXT);
return;
}
throw InternalServerErrorHTTPError(tr("Unacceptable file type, only regular file is allowed."));
QFileInfo fileInfo {localPath.data()};
while (Path(fileInfo.filePath()) != m_rootFolder)