From 2e393aa3cc9adba5a5e82ecc0006b11bf024d3e0 Mon Sep 17 00:00:00 2001 From: Jeremy Rimpo Date: Sat, 2 May 2026 10:45:09 -0500 Subject: Handle Nexus collections links (#2383) - Pops up dialog when the NXM link is a collection - Collection link data available, though still unsupported --- src/downloadmanager.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/downloadmanager.cpp b/src/downloadmanager.cpp index ce6ba665..60347762 100644 --- a/src/downloadmanager.cpp +++ b/src/downloadmanager.cpp @@ -676,6 +676,14 @@ void DownloadManager::addNXMDownload(const QString& url) { NXMUrl nxmInfo(url); + if (nxmInfo.isCollection()) { + QString collectionStr( + tr("This is a Nexus collections link. These are not yet supported by MO.")); + QMessageBox::information(m_ParentWidget, tr("Collections Not Supported"), + collectionStr, QMessageBox::Ok); + return; + } + QStringList validGames; MOBase::IPluginGame* foundGame = nullptr; validGames.append(m_ManagedGame->gameShortName()); -- cgit v1.3.1