Fix update listeners not being called on updates

This commit is contained in:
hensm
2019-03-16 13:21:57 +00:00
parent df5bcd597d
commit a5e8361256

View File

@@ -139,6 +139,10 @@ export default class Session {
}
}
for (const listener of _updateListeners.get(this)) {
listener(true);
}
break;
}