From c9917e4079c5f846b794465ba54254fee586b4a4 Mon Sep 17 00:00:00 2001 From: David Baker Date: Thu, 15 Nov 2018 10:03:16 +0000 Subject: [PATCH] lint --- src/crypto/algorithms/megolm.js | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) diff --git a/src/crypto/algorithms/megolm.js b/src/crypto/algorithms/megolm.js index ae018a42c..0bbf1ca52 100644 --- a/src/crypto/algorithms/megolm.js +++ b/src/crypto/algorithms/megolm.js @@ -439,7 +439,10 @@ MegolmEncryption.prototype.reshareKeyWithDevice = async function( } const sentChainIndex = obSessionInfo.sharedWithDevices[userId][device.deviceId]; if (sentChainIndex === undefined) { - logger.debug("Session ID " + sessionId + " never shared with device " + userId + ":" + device.deviceId); + logger.debug( + "Session ID " + sessionId + " never shared with device " + + userId + ":" + device.deviceId, + ); return; }