1
0
mirror of https://github.com/d47081/qBittorrent.git synced 2025-02-02 09:55:55 +00:00

Remove compile-time conditional

This checking should be universally applied and not limited to certain OS.
This commit is contained in:
Chocobo1 2022-07-23 13:18:18 +08:00
parent 88d9e82fc9
commit 5d1115f591
No known key found for this signature in database
GPG Key ID: 210D9C873253A68C

View File

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