summaryrefslogtreecommitdiff
path: root/src/mainwindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mainwindow.cpp')
-rw-r--r--src/mainwindow.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/mainwindow.cpp b/src/mainwindow.cpp
index 90c7dec7..ce432196 100644
--- a/src/mainwindow.cpp
+++ b/src/mainwindow.cpp
@@ -3357,6 +3357,12 @@ void MainWindow::nxmModInfoAvailable(QString gameName, int modID, QVariant userD
mod->setNexusCategory(result["category_id"].toInt());
+ mod->setAuthor(result["author"].toString());
+
+ mod->setUploader(result["uploaded_by"].toString());
+
+ mod->setUploaderUrl(result["uploaded_users_profile_url"].toString());
+
if ((mod->endorsedState() != EndorsedState::ENDORSED_NEVER) &&
(result.contains("endorsement"))) {
QVariantMap endorsement = result["endorsement"].toMap();