From 8027fea6670e826a89f8738d3b592ca3d1fa76f0 Mon Sep 17 00:00:00 2001 From: LostDragonist Date: Thu, 21 Feb 2019 19:35:15 -0600 Subject: Grab the description for downloads instead of the change log --- src/nexusinterface.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/nexusinterface.cpp') diff --git a/src/nexusinterface.cpp b/src/nexusinterface.cpp index 89b0bfde..0928f74a 100644 --- a/src/nexusinterface.cpp +++ b/src/nexusinterface.cpp @@ -94,7 +94,7 @@ void NexusBridge::nxmFilesAvailable(QString gameName, int modID, QVariant userDa QVariantMap fileInfo = file.toMap(); temp.uri = fileInfo["file_name"].toString(); temp.name = fileInfo["name"].toString(); - temp.description = BBCode::convertToHTML(fileInfo["changelog_html"].toString()); + temp.description = BBCode::convertToHTML(fileInfo["description"].toString()); temp.version = VersionInfo(fileInfo["version"].toString()); temp.categoryID = fileInfo["category_id"].toInt(); temp.fileID = fileInfo["file_id"].toInt(); -- cgit v1.3.1