Upgrade from matrix-js-sdk v34 to v34.13.0

This commit is contained in:
2026-02-19 22:45:31 -07:00
parent 99909a77c3
commit 68e63e5def
4 changed files with 111 additions and 124 deletions
+2 -2
View File
@@ -58,11 +58,11 @@ module.exports = function(RED) {
RED.nodes.registerType("matrix-decrypt-file", MatrixDecryptFile);
function atob(a) {
return new Buffer.from(a, 'base64').toString('binary');
return Buffer.from(a, 'base64').toString('binary');
}
function btoa(b) {
return new Buffer.from(b).toString('base64');
return Buffer.from(b).toString('base64');
}
// the following was taken & modified from https://github.com/matrix-org/browser-encrypt-attachment/blob/master/index.js