← Back to team overview

zeitgeist team mailing list archive

Re: [Merge] lp:~rainct/zeitgeist/ignore-ubuntuone-actor into lp:zeitgeist

 

8	+ // Blacklist Ubuntu One events...
9	+ const gchar *actor;
10	+ actor = zeitgeist_event_get_actor (event);
11	+ if (strcmp(actor, "dbus://com.ubuntuone.SyncDaemon.service") == 0)
12	+ return;
13	+ if (strcmp(actor, "dbus://org.desktopcouch.CouchDB.service") == 0)
14	+ return;

Can we move this out into a separate function, to make this hack less impacting on the main codepath?

Ala if (CheckEventBlacklisted(event)) return;
-- 
https://code.launchpad.net/~rainct/zeitgeist/ignore-ubuntuone-actor/+merge/99986
Your team Zeitgeist Framework Team is subscribed to branch lp:zeitgeist.


References