This commit is contained in:
Daniel Gultsch 2022-02-24 12:41:32 +01:00
parent be1fcfe4f9
commit 9b6a570939
2 changed files with 1 additions and 4 deletions

View file

@ -6,7 +6,7 @@ buildscript {
mavenCentral() mavenCentral()
} }
dependencies { dependencies {
classpath 'com.android.tools.build:gradle:7.1.1' classpath 'com.android.tools.build:gradle:7.1.2'
} }
} }

View file

@ -148,9 +148,6 @@ public class PgpDecryptionService {
try { try {
os.flush(); os.flush();
final String body = os.toString(); final String body = os.toString();
if (body == null) {
throw new IOException("body was null");
}
message.setBody(body); message.setBody(body);
message.setEncryption(Message.ENCRYPTION_DECRYPTED); message.setEncryption(Message.ENCRYPTION_DECRYPTED);
final HttpConnectionManager manager = mXmppConnectionService.getHttpConnectionManager(); final HttpConnectionManager manager = mXmppConnectionService.getHttpConnectionManager();