iMessageWorkflow icon indicating copy to clipboard operation
iMessageWorkflow copied to clipboard

To (Contact) bug

Open lfarah opened this issue 9 years ago • 1 comments

I was searching on your Python code of iMessageFromFile and I noticed that the query was always returning the phone number, and not the name of the person, so when I would IM an user, it would always appear: screen shot 2015-03-15 at 3 11 27 pm

I made some changes on your code on iMessageFromFile and now it's always returning the name:

 def findBestiMessageArgument(name, phone_number_list):
 if not buddyList:
createBuddyList()
for phone_number in phone_number_list:
num = string.strip(phone_number)
if len(num) == 10:
  num = "1" + num
return name

screen shot 2015-03-15 at 3 12 56 pm

lfarah avatar Mar 15 '15 22:03 lfarah

hi @lfarah , I'm actually overhauling a lot of this code at the moment. With a lot of code from @amoose136, I'm going to be releasing a much more straightforward workflow for iMessages. I believe with the release, this problem should go away! Thank you for submitting a bug change though

NolanChan avatar Mar 16 '15 23:03 NolanChan