Skip to content

Commit

Permalink
Fix build by commenting out URL downloader manager
Browse files Browse the repository at this point in the history
  • Loading branch information
Bionus committed Oct 4, 2020
1 parent 8ab8718 commit f2bb2cd
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lib/src/models/profile.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ Profile::Profile(QString path)
m_downloadQueryManager = new DownloadQueryManager(m_path + "/restore.igl", this);

// URL downloaders
m_urlDownloaderManager = new UrlDownloaderManager(m_path + "/sites", this);
// m_urlDownloaderManager = new UrlDownloaderManager(m_path + "/sites", this);

// Complete auto-complete
static QStringList specialCompletes = { "grabber:alreadyExists", "grabber:inMd5List", "grabber:downloaded", "grabber:favorited" };
Expand All @@ -188,7 +188,7 @@ Profile::~Profile()
delete m_commands;
delete m_monitorManager;
delete m_downloadQueryManager;
delete m_urlDownloaderManager;
// delete m_urlDownloaderManager;
}


Expand Down

0 comments on commit f2bb2cd

Please sign in to comment.