Browse Source

Fix torrent addition from browser

adaptive-webui-19844
Christophe Dumez 14 years ago
parent
commit
3bba7578af
  1. 5
      src/torrentadditiondlg.cpp

5
src/torrentadditiondlg.cpp

@ -226,6 +226,11 @@ void torrentAdditionDialog::showLoadMagnetURI(QString magnet_uri) { @@ -226,6 +226,11 @@ void torrentAdditionDialog::showLoadMagnetURI(QString magnet_uri) {
void torrentAdditionDialog::showLoad(QString filePath, QString from_url) {
is_magnet = false;
// This is an URL to a local file, switch to local path
if(filePath.startsWith("file:", Qt::CaseInsensitive))
filePath = QUrl(filePath).toLocalFile();
if(!QFile::exists(filePath)) {
close();
return;

Loading…
Cancel
Save