This commit is contained in:
2023-09-28 03:04:51 -06:00
parent 084b4d9c49
commit a721a76d56
4 changed files with 13 additions and 6 deletions

View File

@@ -119,7 +119,7 @@ Sub fm_MessageArrived (Message As RemoteMessage)
SendMessage(params)
End If
If tipos.IndexOf("pu") = -1 And tipos.IndexOf("ping") = -1 And tipos.IndexOf("dr") = -1 Then
if starter.logger then Log("No es ping ni solicitud de ubicacion o ruta, entonces no hacemos nada")
If Starter.logger Then Log("No es ping ni solicitud de ubicacion o ruta, entonces no hacemos nada")
End If
End If
' Dim n As Notification
@@ -181,7 +181,7 @@ End Sub
Sub PE_PhoneStateChanged (State As String, IncomingNumber As String, Intent As Intent)
If Starter.logger Then Log("Phone state: " & State)
If State = "RINGING" Then
if starter.logger then Log("The incoming number is: " & IncomingNumber)
If Starter.logger Then Log("The incoming number is: " & IncomingNumber)
Else
End If
End Sub