View Single Post
pH5's Avatar
Posts: 138 | Thanked: 375 times | Joined on Aug 2009 @ Berlin
#42
Originally Posted by Sazpaimon
It seems mff is using the old Pre-PR1.2 sqlite layout.

What mff uses now:
Code:
query.exec("SELECT start_time,end_time,is_read,remote_uid,free_text,group_uid,outgoing FROM Events WHERE service_id=3 AND event_type_id=7 ORDER BY group_uid,start_time");
What it SHOULD be:
Code:
query.exec("SELECT start_time,end_time,is_read,remote_uid,free_text,group_uid,outgoing FROM Events WHERE service_id=3 AND (evententries._type_id=7 OR event_type_id=11) ORDER BY group_uid,start_time");
I changed this code, repackaged the deb, and it worked fine.
Is this documented somewhere? My database didn't contain any event_type_id=11