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. _______________________________________________ Mailing list: https://launchpad.net/~zeitgeist Post to : [email protected] Unsubscribe : https://launchpad.net/~zeitgeist More help : https://help.launchpad.net/ListHelp

