Browse Source

Fix update channels

@dogonwheels actually did this change, I just committed and tested it.
Tobias Hieta 9 years ago
parent
commit
3d90eb1b6a
1 changed files with 3 additions and 5 deletions
  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);