You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
SMS syncing does work with Soduto, however that's because of notification sync. Soduto actually has a feature for handling SMS messages separately and in a more better way but it somehow doesn't work. If you look inside TelephonyService.swift, you'll find handleDataPacket method where inside the switch statement, you see that Soduto will show a notification if it detects the incoming data packet is an SMS, and you can actually reply directly from the Mac. However all these codes don't work at all because in the very first line of the function, it checks if the incoming data packet is a Telephony Packet, which it surprisingly returns as false and hence the guard stops the code below to get executed.
The text was updated successfully, but these errors were encountered:
SMS syncing does work with Soduto, however that's because of notification sync. Soduto actually has a feature for handling SMS messages separately and in a more better way but it somehow doesn't work. If you look inside
TelephonyService.swift
, you'll findhandleDataPacket
method where inside the switch statement, you see that Soduto will show a notification if it detects the incoming data packet is an SMS, and you can actually reply directly from the Mac. However all these codes don't work at all because in the very first line of the function, it checks if the incoming data packet is a Telephony Packet, which it surprisingly returns asfalse
and hence theguard
stops the code below to get executed.The text was updated successfully, but these errors were encountered: