cordova-plugin-sms icon indicating copy to clipboard operation
cordova-plugin-sms copied to clipboard

Not able to access MMS

Open randomprimate opened this issue 7 years ago • 0 comments

Description

Accessing SMS is working well but I'm not able to find any MMS messages.

I'm using a function very similar to the example code:

function listSMS() {    		
  if(SMS) SMS.listSMS({}, function(data){
    if(Array.isArray(data)) {
      for(var i in data) {
        console.log(i);
      }
    }
}, function(err){
    console.log('error list sms: ' + err);
   });
}

Is there a filter I'm missing?

randomprimate avatar Nov 22 '17 17:11 randomprimate