diff options
Diffstat (limited to 'src/downloadmanagerproxy.cpp')
| -rw-r--r-- | src/downloadmanagerproxy.cpp | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/src/downloadmanagerproxy.cpp b/src/downloadmanagerproxy.cpp index ab4ed83b..3d7040d8 100644 --- a/src/downloadmanagerproxy.cpp +++ b/src/downloadmanagerproxy.cpp @@ -43,7 +43,14 @@ int DownloadManagerProxy::startDownloadURLs(const QStringList& urls) int DownloadManagerProxy::startDownloadNexusFile(int modID, int fileID) { - return m_Proxied->startDownloadNexusFile(modID, fileID); + return m_Proxied->startDownloadNexusFile( + m_OrganizerProxy->managedGame()->gameNexusName(), modID, fileID); +} + +int DownloadManagerProxy::startDownloadNexusFileForGame(const QString& gameName, + int modID, int fileID) +{ + return m_Proxied->startDownloadNexusFile(gameName, modID, fileID); } QString DownloadManagerProxy::downloadPath(int id) |
