fix local variable usage after extracting method

This commit is contained in:
Bruno Windels 2023-02-10 08:48:10 +01:00
parent 4a46c98d12
commit f9fa59609f

View File

@ -153,8 +153,8 @@ export class Session {
}, },
storage: this._storage, storage: this._storage,
webRTC: this._platform.webRTC, webRTC: this._platform.webRTC,
ownDeviceId: sessionInfo.deviceId, ownDeviceId: this._sessionInfo.deviceId,
ownUserId: sessionInfo.userId, ownUserId: this._sessionInfo.userId,
logger: this._platform.logger, logger: this._platform.logger,
forceTURN: false, forceTURN: false,
}); });