don't react to null and empty voice replies

This commit is contained in:
Daniel Gultsch 2016-09-21 19:04:16 +02:00
parent 13ed27f91e
commit 343d895a26
1 changed files with 4 additions and 3 deletions

View File

@ -573,9 +573,10 @@ public class XmppConnectionService extends Service {
case ACTION_REPLY_TO_CONVERSATION:
Bundle remoteInput = RemoteInput.getResultsFromIntent(intent);
if (remoteInput != null && c != null) {
String body = remoteInput.getString("text_reply");
directReply(c,body);
final CharSequence body = remoteInput.getCharSequence("text_reply");
if (body != null && body.length() > 0) {
directReply(c, body.toString());
}
}
break;
case AudioManager.RINGER_MODE_CHANGED_ACTION: