1
0
mirror of https://github.com/matrix-org/matrix-react-sdk.git synced 2026-01-03 21:42:32 +03:00

preserve outer this with arrow function

This commit is contained in:
Bruno Windels
2019-02-07 11:12:34 +00:00
parent 7b23fa7a4f
commit 52aab2be98

View File

@@ -68,7 +68,7 @@ class CustomRoomTagStore extends EventEmitter {
addListener(callback) {
this.on("change", callback);
return {
remove() {
remove: () => {
this.removeListener("change", callback);
},
};