mirror of
https://github.com/qbittorrent/qBittorrent.git
synced 2026-01-05 15:12:32 -06:00
- Fix .qbittorrent folder not being created. This bug was introduced in v2.0.1 and it is very important.
This commit is contained in:
@@ -3,6 +3,7 @@
|
|||||||
- BUGFIX: Do not use home folder as a fallback when the save path is not accessible
|
- BUGFIX: Do not use home folder as a fallback when the save path is not accessible
|
||||||
- BUGFIX: Fix Mininova, ThePirateBay search engine plugins
|
- BUGFIX: Fix Mininova, ThePirateBay search engine plugins
|
||||||
- BUGFIX: Read RSS articles are remembered on restart for feeds with no torrents attached
|
- BUGFIX: Read RSS articles are remembered on restart for feeds with no torrents attached
|
||||||
|
- BUGFIX: Fix .qbittorrent folder not being created (introduced in v2.0.1)
|
||||||
|
|
||||||
* Sun Dec 13 2009 - Christophe Dumez <chris@qbittorrent.org> - v2.0.1
|
* Sun Dec 13 2009 - Christophe Dumez <chris@qbittorrent.org> - v2.0.1
|
||||||
- BUGFIX: µTorrent user-agent is now spoofed correctly
|
- BUGFIX: µTorrent user-agent is now spoofed correctly
|
||||||
|
|||||||
@@ -215,6 +215,11 @@ public:
|
|||||||
// return qBittorrent config path
|
// return qBittorrent config path
|
||||||
static QString qBittorrentPath() {
|
static QString qBittorrentPath() {
|
||||||
QString qBtPath = QDir::homePath()+QDir::separator()+QString::fromUtf8(".qbittorrent") + QDir::separator();
|
QString qBtPath = QDir::homePath()+QDir::separator()+QString::fromUtf8(".qbittorrent") + QDir::separator();
|
||||||
|
// Create dir if it does not exist
|
||||||
|
if(!QFile::exists(qBtPath)){
|
||||||
|
QDir dir(qBtPath);
|
||||||
|
dir.mkpath(qBtPath);
|
||||||
|
}
|
||||||
return qBtPath;
|
return qBtPath;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user