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
hi i'm using this code to retrive some messages from my account
postal.connect(timeout:Postal.defaultTimeout, completion:{[weak self] result inswitch result {case.success:letfilter=.unread && .from(value:"user@provider.com")self?.postal.search("INBOX", filter: filter){ result inswitch result {case.success(let indexes):self?.postal.fetchMessages("INBOX", uids: indexes, flags:[.fullHeaders ], onMessage:{ message inself?.messages.insert(message, at:0)}, onComplete:{ error iniflet error = error {self?.showAlertError("Error Obteniendo los Mensajes", message:(error asNSError).localizedDescription)}else{self?.tableView.reloadData()}})case.failure(let error):self?.showAlertError("Error Obteniendo los Mensajes Filtrados", message:(error asNSError).localizedDescription)}}case.failure(let error):self?.showAlertError("Error de Connección", message:(error asNSError).localizedDescription)}})}
my questions are, i'm doing something wrong? there is an easy way? what is xpc connection interrupted?, i cant find nothing in google.
I guess, it only matters to have connection to the network by data mobile or wifi, but I wonder, if I am using mobile data for my connection to the network, this influences something..
The text was updated successfully, but these errors were encountered:
hi i'm using this code to retrive some messages from my account
my questions are, i'm doing something wrong? there is an easy way? what is xpc connection interrupted?, i cant find nothing in google.
I guess, it only matters to have connection to the network by data mobile or wifi, but I wonder, if I am using mobile data for my connection to the network, this influences something..
The text was updated successfully, but these errors were encountered: