rstrip(n->msg)

This causes the dupliate detection to ignore trailing whitespaces
This commit is contained in:
Sascha Kruse 2012-12-12 13:38:45 +01:00
parent 70839e1321
commit d866bb0c35

View File

@ -844,6 +844,8 @@ int init_notification(notification * n, int id)
} }
n->msg = fix_markup(n->msg); n->msg = fix_markup(n->msg);
n->msg = rstrip(n->msg);
n->dup_count = 0; n->dup_count = 0;