From aa468c34240ca436a8dccc5c6881ab6a6fd0d385 Mon Sep 17 00:00:00 2001 From: Jeremy Rimpo Date: Wed, 29 Apr 2026 16:46:45 -0500 Subject: [PATCH] Handle Nexus collections links - 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 ce6ba665d..60347762a 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());