- Folder Scanning: initial import of the torrents inside is fixed

This commit is contained in:
Christophe Dumez 2009-11-27 11:50:30 +00:00
parent 90207020f2
commit 3c6635cdbe
2 changed files with 8 additions and 3 deletions

View file

@ -1249,8 +1249,9 @@ void Bittorrent::enableDirectoryScanning(QString scan_dir) {
}
if(FSWatcher == 0) {
// Set up folder watching
FSWatcher = new FileSystemWatcher(scan_dir, this);
FSWatcher = new FileSystemWatcher(this);
connect(FSWatcher, SIGNAL(torrentsAdded(QStringList&)), this, SLOT(addTorrentsFromScanFolder(QStringList&)));
FSWatcher->addPath(scan_dir);
} else {
QString old_scan_dir = "";
if(!FSWatcher->directories().empty())