about summary refs log tree commit diff stats
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/xmpp/capabilities.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/xmpp/capabilities.c b/src/xmpp/capabilities.c
index 645eed68..4e710689 100644
--- a/src/xmpp/capabilities.c
+++ b/src/xmpp/capabilities.c
@@ -83,15 +83,15 @@ caps_add(const char * const ver, Capabilities *caps)
 {
     gboolean cached = g_key_file_has_group(cache, ver);
     if (!cached) {
+        if (caps->name) {
+            g_key_file_set_string(cache, ver, "name", caps->name);
+        }
         if (caps->category) {
             g_key_file_set_string(cache, ver, "category", caps->category);
         }
         if (caps->type) {
             g_key_file_set_string(cache, ver, "type", caps->type);
         }
-        if (caps->name) {
-            g_key_file_set_string(cache, ver, "name", caps->name);
-        }
         if (caps->software) {
             g_key_file_set_string(cache, ver, "software", caps->software);
         }