View Single Post
Posts: 115 | Thanked: 12 times | Joined on Oct 2009
#448
Originally Posted by ceevee View Post
I had a problem with Call Notify 0.2.0-2 not working well with PR 1.2.

If I missed one SMS, it would say that I missed 5+. It would not show a missed call icon if I missed a call.

I opened usr\lib\hildon-desktop\CallNotify.py. Saw this line.

Code:
if isSms:
#Nokia changed the event number from 7 to 11 and also combined the incomming and outgoing sms's
cur.execute("select count(id) from Events where event_type_id = 7 and outgoing = 0")
else:
#Nokia changed the event from 3 to 2
cur.execute("select count(id) from Events where event_type_id = 3 and outgoing = 0")
After reading the commented out lines, I changed the first event_type_id = 7 to event_type_id = 11.

I changed the second event_type_id = 3 to event_type_id = 2.

Everything works for me correctly now on PR 1.2

Attached is the modified CallNotify.py. Extract from .zip and replace in \usr\lib\hildon-desktop

Not sure if it'll work for you.
Thanks Ceevee.

Has anyone tried this patched version out? Call Notify was a really useful app while it was working and I'd love to have it again but not being a developer and having not a great deal of modding experience I'm always apprehensive installing apps that aren't in the Extras repo as it takes me so long to restore the phone to the way I like if I brick it.