get_new_messages(): Return mentions only

This commit is contained in:
tastytea 2018-05-19 22:47:56 +02:00
parent 784dc4269a
commit df818317ac
Signed by: tastytea
GPG Key ID: 59346E0EA35C67E5
1 changed files with 5 additions and 1 deletions

View File

@ -100,7 +100,11 @@ std::vector<Easy::Notification> Listener::get_new_messages()
{ {
if (event.first == Easy::event_type::Notification) if (event.first == Easy::event_type::Notification)
{ {
v.push_back(Easy::Notification(event.second)); Easy::Notification notif(event.second);
if (notif.type() == Easy::notification_type::Mention)
{
v.push_back(notif);
}
} }
} }
count_empty = 0; count_empty = 0;