summaryrefslogtreecommitdiff
path: root/src/modinforegular.cpp
diff options
context:
space:
mode:
authorJeremy Rimpo <jeremy.rimpo@servermonkey.com>2023-09-21 17:43:29 -0500
committerJeremy Rimpo <jeremy.rimpo@servermonkey.com>2023-09-21 17:43:29 -0500
commitd2e48ed72e3526c08580d5c4b3531778267532c5 (patch)
tree49e8e02641055f6f0ed46d9467a288868f7f1262 /src/modinforegular.cpp
parent133c072eb7f63e807f2a211804537f59d1f8b0ed (diff)
Fix rebase issues
Diffstat (limited to 'src/modinforegular.cpp')
-rw-r--r--src/modinforegular.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/modinforegular.cpp b/src/modinforegular.cpp
index e238075a..58590477 100644
--- a/src/modinforegular.cpp
+++ b/src/modinforegular.cpp
@@ -212,7 +212,8 @@ void ModInfoRegular::readMeta()
// ignore invalid id
continue;
}
- if (ok && (categoryID != 0) && (CategoryFactory::instance()->categoryExists(categoryID))) {
+ if (ok && (categoryID != 0) &&
+ (CategoryFactory::instance()->categoryExists(categoryID))) {
m_Categories.insert(categoryID);
if (iter == categories.begin()) {
m_PrimaryCategory = categoryID;