Hey!
I'm working on a meteor project that makes use of zodern/melte's $m functionality. We use Meteor sessions to set and get information about toasts so the app can appropriately display them. We have the following reactive block, which from my understanding should keep track of when the session variables change, but does not.

This reactive block does not run when the session variables change as intended.
When I change the reactive block to a Tracker.autorun block, it works completely fine and as intended. My understanding was that $m and Tracker.autorun should have the exact same behavior.
Additionally, if I self-reference the above variables like so it also fixes the issue:

It's worth pointing out that this has happened in other places in our app, namely with subscriptions to Meteor publications, but this was the simplest example I could come by.
These reactive blocks were not causing this issue a couple of months ago (I remember them working around the middle of September, but I'm unsure of when they stopped working).
Please let me know if you need any more information. Thanks!
Hey!
I'm working on a meteor project that makes use of zodern/melte's
$mfunctionality. We use Meteor sessions to set and get information about toasts so the app can appropriately display them. We have the following reactive block, which from my understanding should keep track of when the session variables change, but does not.This reactive block does not run when the session variables change as intended.
When I change the reactive block to a Tracker.autorun block, it works completely fine and as intended. My understanding was that
$mand Tracker.autorun should have the exact same behavior.Additionally, if I self-reference the above variables like so it also fixes the issue:

It's worth pointing out that this has happened in other places in our app, namely with subscriptions to Meteor publications, but this was the simplest example I could come by.
These reactive blocks were not causing this issue a couple of months ago (I remember them working around the middle of September, but I'm unsure of when they stopped working).
Please let me know if you need any more information. Thanks!