From b89bb3a5139cf6aa4d9a1cc646ba6b0cb4056be4 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?M=C3=A9sz=C3=A1ros=20Mih=C3=A1ly?= Date: Thu, 14 May 2020 09:16:42 +0200 Subject: [PATCH] Fix lint max length --- app/src/Spotlights.js | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/app/src/Spotlights.js b/app/src/Spotlights.js index 83e9905..5d9f406 100644 --- a/app/src/Spotlights.js +++ b/app/src/Spotlights.js @@ -59,7 +59,8 @@ export default class Spotlights extends EventEmitter peerId = this._unmutablePeerList[0]; } - if (peerId != null && this._currentSpotlights.length < this._unmutablePeerList.length) + if (peerId != null && + this._currentSpotlights.length < this._unmutablePeerList.length) { const oldIndex = this._unmutablePeerList.indexOf(peerId); @@ -101,7 +102,8 @@ export default class Spotlights extends EventEmitter peerId = this._unmutablePeerList[0]; } - if (peerId != null && this._currentSpotlights.length < this._unmutablePeerList.length) + if (peerId != null && + this._currentSpotlights.length < this._unmutablePeerList.length) { const oldIndex = this._unmutablePeerList.indexOf(peerId);