aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/im-application-list.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/im-application-list.c b/src/im-application-list.c
index 62699df..676631e 100644
--- a/src/im-application-list.c
+++ b/src/im-application-list.c
@@ -237,7 +237,7 @@ app_source_action_check_draw (Application * app, const gchar * action_name)
g_variant_get (state, "(ux&sb)", &count, &time, &string, &draws_attention);
/* invisible sources do not draw attention */
- if (count == 0 && time == 0 && (string == NULL || string[0] != '\0'))
+ if (count == 0 && time == 0 && (string == NULL || string[0] == '\0'))
draws_attention = FALSE;
g_variant_unref(state);