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
On my device (OBI200), the format of the last caller info string is: 'CALLER ID NAME' 1XXXXXXXXXX
The strip method currently used only removes leading and trailing characters from the string, so the single quote after the caller id name is never removed.
Replacing the current code: services[subtitle + " Last Caller Info"] = state.strip("\' ")
On my device (OBI200), the format of the last caller info string is: 'CALLER ID NAME' 1XXXXXXXXXX
The strip method currently used only removes leading and trailing characters from the string, so the single quote after the caller id name is never removed.
Replacing the current code:
services[subtitle + " Last Caller Info"] = state.strip("\' ")
with:
services[subtitle + " Last Caller Info"] = state.replace("\' ", "")
removes all single quote characters regardless of location.
The text was updated successfully, but these errors were encountered: