From a5e83612568a5583fd5751cb5ff03d7b419a7d8b Mon Sep 17 00:00:00 2001 From: hensm Date: Sat, 16 Mar 2019 13:21:57 +0000 Subject: [PATCH] Fix update listeners not being called on updates --- ext/src/shim/cast/classes/Session.ts | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/ext/src/shim/cast/classes/Session.ts b/ext/src/shim/cast/classes/Session.ts index c9067ea..4825ed5 100755 --- a/ext/src/shim/cast/classes/Session.ts +++ b/ext/src/shim/cast/classes/Session.ts @@ -139,6 +139,10 @@ export default class Session { } } + for (const listener of _updateListeners.get(this)) { + listener(true); + } + break; }