Remove empty message check

This commit is contained in:
M66B
2019-10-05 20:44:45 +02:00
parent fd4aec91f1
commit ad4ea2bc1a
3 changed files with 35 additions and 15 deletions

View File

@@ -747,8 +747,8 @@ public class MessageHelper {
Long getSize() throws MessagingException {
long size = imessage.getSize();
if (size == 0)
throw new MessagingException("Message empty");
//if (size == 0)
// throw new MessagingException("Message empty");
return (size < 0 ? null : size);
}