mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
Correctly concatenate path components
This commit is contained in:
parent
7e8a176751
commit
fdbf8cb0ee
8 changed files with 14 additions and 14 deletions
|
@ -220,7 +220,7 @@ void Application::setFileLoggerEnabled(const bool value)
|
|||
|
||||
QString Application::fileLoggerPath() const
|
||||
{
|
||||
return m_storeFileLoggerPath.get(specialFolderLocation(SpecialFolder::Data) + LOG_FOLDER);
|
||||
return m_storeFileLoggerPath.get(QDir(specialFolderLocation(SpecialFolder::Data)).absoluteFilePath(LOG_FOLDER));
|
||||
}
|
||||
|
||||
void Application::setFileLoggerPath(const QString &path)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue