1
0
mirror of https://github.com/vector-im/hydrogen-web.git synced 2025-01-12 04:57:18 +01:00

Used "null" instead of "undefined"

When creating the this._lastSessionHash attribute of History
This commit is contained in:
Kaki In 2022-07-27 09:19:36 +02:00
parent 0718f1e77e
commit 9b0ab0c8f1

@ -20,7 +20,7 @@ export class History extends BaseObservableValue {
constructor() { constructor() {
super(); super();
this._lastSessionHash = null; this._lastSessionHash = undefined;
} }
handleEvent(event) { handleEvent(event) {