Display mood preferences

This commit is contained in:
Michael Vetter
2022-06-22 11:40:20 +02:00
parent 9f13b9e939
commit 918d060817
6 changed files with 20 additions and 3 deletions

View File

@@ -2714,7 +2714,7 @@ static struct cmd_t command_defs[] = {
},
{ "/mood",
parse_args, 1, 3, NULL,
parse_args, 1, 3, &cons_mood_setting,
CMD_NOSUBFUNCS
CMD_MAINFUNC(cmd_mood)
CMD_TAGS(

View File

@@ -9773,7 +9773,7 @@ cmd_mood(ProfWin* window, const char* const command, gchar** args)
if (g_strcmp0(args[0], "on") == 0) {
_cmd_set_boolean_preference(args[0], command, "User mood", PREF_MOOD);
caps_add_feature(STANZA_NS_MOOD_NOTIFY);
} else if (g_strcmp0(args[0], "off") == 0) {
} else if (g_strcmp0(args[0], "off") == 0) {
_cmd_set_boolean_preference(args[0], command, "User mood", PREF_MOOD);
caps_remove_feature(STANZA_NS_MOOD_NOTIFY);
} else if (g_strcmp0(args[0], "set") == 0) {