From f9fa59609f04b334c26ce7d023427575ef07e0ec Mon Sep 17 00:00:00 2001 From: Bruno Windels <274386+bwindels@users.noreply.github.com> Date: Fri, 10 Feb 2023 08:48:10 +0100 Subject: [PATCH] fix local variable usage after extracting method --- src/matrix/Session.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/matrix/Session.js b/src/matrix/Session.js index b3bd6f98..bd4de880 100644 --- a/src/matrix/Session.js +++ b/src/matrix/Session.js @@ -153,8 +153,8 @@ export class Session { }, storage: this._storage, webRTC: this._platform.webRTC, - ownDeviceId: sessionInfo.deviceId, - ownUserId: sessionInfo.userId, + ownDeviceId: this._sessionInfo.deviceId, + ownUserId: this._sessionInfo.userId, logger: this._platform.logger, forceTURN: false, });