Skip to content

Commit 5746ad7

Browse files
author
Ruben Daniels
committed
Merge pull request #2780 from bmatusiak/webkitBufferFix
apf fix for depreciated feature
2 parents f7d102b + 7bc4cff commit 5746ad7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

plugins-client/lib.apf/www/apf-packaged/apf_release.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40158,7 +40158,7 @@ apf.runWebkit = function(){
4015840158
var bytes = Array.prototype.map.call(string, function(c) {
4015940159
return c.charCodeAt(0) & 0xff;
4016040160
});
40161-
this.send(new Uint8Array(bytes).buffer);
40161+
this.send(new Uint8Array(bytes));
4016240162
};
4016340163
}
4016440164
}

0 commit comments

Comments
 (0)