We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 053ca59 commit 63fb271Copy full SHA for 63fb271
app/built_in_plugins/src/main/widgets/src/routes/chat.svelte
@@ -246,15 +246,16 @@
246
247
Widget.on('init', () => {
248
Widget.broadcast('update');
249
- });
250
251
- Koi.on('*', (_, event) => onEvent(event));
252
- Koi.eventHistory.forEach((event) => {
253
- onEvent({
254
- ...event,
255
- x_is_catchup: true
+ Koi.eventHistory.forEach((event) => {
+ onEvent({
+ ...event,
+ x_is_catchup: true
+ });
256
});
257
+
258
+ Koi.on('*', (_, event) => onEvent(event));
259
260
</script>
261
0 commit comments