summaryrefslogtreecommitdiff
path: root/src/downloadmanager.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/downloadmanager.cpp')
-rw-r--r--src/downloadmanager.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/downloadmanager.cpp b/src/downloadmanager.cpp
index e79c3ba6..03c282f0 100644
--- a/src/downloadmanager.cpp
+++ b/src/downloadmanager.cpp
@@ -27,6 +27,7 @@ along with Mod Organizer. If not, see <http://www.gnu.org/licenses/>.
#include "json.h"
#include "selectiondialog.h"
#include <utility.h>
+#include <bbcode.h>
#include <QTimer>
#include <QFileInfo>
#include <QRegExp>
@@ -1159,7 +1160,7 @@ void DownloadManager::nxmFileInfoAvailable(int modID, int fileID, QVariant userD
info->fileName = result["uri"].toString();
info->fileCategory = result["category_id"].toInt();
info->fileTime = matchDate(result["date"].toString());
- info->description = result["description"].toString();
+ info->description = BBCode::convertToHTML(result["description"].toString());
info->repository = "Nexus";
info->modID = modID;