Remove usages of Buffer
Signed-off-by: Michael Telatynski <7t3chguy@gmail.com>
This commit is contained in:
@@ -431,7 +431,7 @@ export default class HTMLExporter extends Exporter {
|
||||
!this.needsDateSeparator(event, prevEvent) &&
|
||||
shouldFormContinuation(prevEvent, event, this.room.client, false);
|
||||
const body = await this.createMessageBody(event, shouldBeJoined);
|
||||
this.totalSize += Buffer.byteLength(body);
|
||||
this.totalSize += new TextEncoder().encode(body).byteLength;
|
||||
content += body;
|
||||
prevEvent = event;
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user