fixed treatAsDownload() for empty messages
This commit is contained in:
parent
8f0a1c8cd8
commit
a5bfc704a3
1 changed files with 5 additions and 1 deletions
|
@ -730,10 +730,14 @@ public class Message extends AbstractEntity {
|
|||
if (treatAsDownloadable == null) {
|
||||
try {
|
||||
final String[] lines = body.split("\n");
|
||||
if (lines.length == 0) {
|
||||
treatAsDownloadable = false;
|
||||
return false;
|
||||
}
|
||||
for (String line : lines) {
|
||||
if (line.contains("\\s+")) {
|
||||
treatAsDownloadable = false;
|
||||
return treatAsDownloadable;
|
||||
return false;
|
||||
}
|
||||
}
|
||||
final URL url = new URL(lines[0]);
|
||||
|
|
Reference in a new issue