瀏覽代碼

Fix update channels

@dogonwheels actually did this change, I just committed and tested it.
Tobias Hieta 9 年之前
父節點
當前提交
3d90eb1b6a
共有 1 個文件被更改,包括 3 次插入5 次删除
  1. 3 5
      src/system/SystemComponent.cpp

+ 3 - 5
src/system/SystemComponent.cpp

@@ -257,11 +257,9 @@ QStringList SystemComponent::networkAddresses() const
 void SystemComponent::userInformation(const QVariantMap& userModel)
 {
   QStringList roleList;
-  auto roles = userModel.value("roles").toMap();
-  foreach (const QString& key, roles.keys())
-  {
-    if (roles.value(key).toBool())
-      roleList << key;
+  foreach (const QVariant& role, userModel.value("roles").toList())
+  { 
+    roleList << role.toMap().value("id").toString();
   }
 
   SettingsComponent::Get().setUserRoleList(roleList);