Make sure the connection knows the final filename

Stephen Paul Weber created

Change summary

src/main/java/eu/siacs/conversations/http/HttpDownloadConnection.java | 3 
1 file changed, 1 insertion(+), 2 deletions(-)

Detailed changes

src/main/java/eu/siacs/conversations/http/HttpDownloadConnection.java 🔗

@@ -195,8 +195,7 @@ public class HttpDownloadConnection implements Transferable {
         if (message.getEncryption() == Message.ENCRYPTION_PGP) {
             notify = message.getConversation().getAccount().getPgpDecryptionService().decrypt(message, notify);
         }
-        DownloadableFile file;
-        final DownloadableFile tmp = mXmppConnectionService.getFileBackend().getFile(message);
+        final DownloadableFile tmp = file;
         final String extension = MimeUtils.extractRelevantExtension(tmp.getName());
         try {
             mXmppConnectionService.getFileBackend().setupRelativeFilePath(message, new FileInputStream(tmp), extension);