From 3e2f34ac6214d8f427a16a0837fb0c9368b28d74 Mon Sep 17 00:00:00 2001
From: Artem Chudinov <arzeth0@gmail.com>
Date: Thu, 20 Aug 2015 03:22:16 +0500
Subject: [PATCH] Add missing semicolons

---
 src/packet/symmetrically_encrypted.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/packet/symmetrically_encrypted.js b/src/packet/symmetrically_encrypted.js
index 5a472508..474697ef 100644
--- a/src/packet/symmetrically_encrypted.js
+++ b/src/packet/symmetrically_encrypted.js
@@ -72,7 +72,7 @@ SymmetricallyEncrypted.prototype.decrypt = function (sessionKeyAlgorithm, key) {
        sessionKeyAlgorithm === 'aes256')) {
     throw new Error('Decryption failed due to missing MDC in combination with modern cipher.')
   }
-  this.packets.read(decrypted.join(''))
+  this.packets.read(decrypted.join(''));
 };
 
 SymmetricallyEncrypted.prototype.encrypt = function (algo, key) {