notification - fix property name for suppress sound

This commit is contained in:
Carsten Haitzler 2022-09-09 09:40:38 +01:00
parent 05e150ad43
commit 2e30f391fb
1 changed files with 2 additions and 2 deletions

View File

@ -144,12 +144,12 @@ hints_dict_iter(void *data, const void *key, Eldbus_Message_Iter *var)
// 1== remove notification when action invoked - no timeout
n->resident = val;
}
else if (!strcmp(key, "supress-sound"))
else if (!strcmp(key, "suppress-sound"))
{
Eina_Bool val = 0;
eldbus_message_iter_arguments_get(var, "b", &val);
printf("NOT: supress-sound=%i\n", val);
printf("NOT: suppress-sound=%i\n", val);
// 1== remove notification when action invoked - no timeout
n->suppress_sound = val;
}