mirror of
https://github.com/element-hq/element-web
synced 2024-11-23 17:56:01 +03:00
The variable is called roomId here
This commit is contained in:
parent
d61714ab8d
commit
842b5aed56
1 changed files with 1 additions and 1 deletions
|
@ -161,7 +161,7 @@ class ContentMessages {
|
||||||
var error;
|
var error;
|
||||||
var self = this;
|
var self = this;
|
||||||
return def.promise.then(function() {
|
return def.promise.then(function() {
|
||||||
if (matrixClient.isRoomEncrypted(room_id)) {
|
if (matrixClient.isRoomEncrypted(roomId)) {
|
||||||
// If the room is encrypted then encrypt the file before uploading it.
|
// If the room is encrypted then encrypt the file before uploading it.
|
||||||
// First read the file into memory.
|
// First read the file into memory.
|
||||||
upload.promise = readFileAsArrayBuffer(file).then(function(data) {
|
upload.promise = readFileAsArrayBuffer(file).then(function(data) {
|
||||||
|
|
Loading…
Reference in a new issue