mirror of
https://github.com/qbittorrent/qBittorrent
synced 2025-07-16 02:03:07 -07:00
- FEATURE: Make use of torrent enclosure in RSS feeds for direct download
- FEATURE: Implemented a RSS feed downloader with filter support - FEATURE: Save old RSS item to hard disk to remember them on start up - FEATURE: RSS Feeds can now be copied to the clipboard
This commit is contained in:
parent
2477dc1fc0
commit
0b9c05d41b
79 changed files with 8294 additions and 5496 deletions
|
@ -103,7 +103,7 @@ public:
|
|||
#ifndef Q_WS_WIN
|
||||
unsigned long long available;
|
||||
struct statfs stats;
|
||||
int ret = statfs ((path+"/.").toUtf8().data(), &stats) ;
|
||||
int ret = statfs ((path+"/.").toLocal8Bit().data(), &stats) ;
|
||||
if(ret == 0) {
|
||||
available = ((unsigned long long)stats.f_bavail) *
|
||||
((unsigned long long)stats.f_bsize) ;
|
||||
|
@ -293,7 +293,7 @@ public:
|
|||
sha1.assign(base32decode(reg.cap(1).toStdString()));
|
||||
hash = misc::toQString(sha1);
|
||||
}
|
||||
qDebug("magnetUriToHash: hash: %s", hash.toUtf8().data());
|
||||
qDebug("magnetUriToHash: hash: %s", hash.toLocal8Bit().data());
|
||||
return hash;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue