From 6c9e7156f7b6921c269adeb3ba8794d04b44ad78 Mon Sep 17 00:00:00 2001 From: Christophe Dumez Date: Tue, 19 Jan 2010 23:43:29 +0000 Subject: [PATCH] - Fix magnet link support --- src/bittorrent.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/bittorrent.cpp b/src/bittorrent.cpp index 5c6977c50..1bdd7c594 100644 --- a/src/bittorrent.cpp +++ b/src/bittorrent.cpp @@ -842,7 +842,7 @@ QTorrentHandle Bittorrent::addMagnetUri(QString magnet_uri, bool resumed) { } QString label = TorrentTempData::getLabel(hash); // Save persistent data for new torrent - TorrentPersistentData::saveTorrentPersistentData(h); + TorrentPersistentData::saveTorrentPersistentData(h, true); // Save Label if(!label.isEmpty()) { TorrentPersistentData::saveLabel(hash, label);