Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[FIX] reactivity: do not crash when reading reactive frozen objects
This crash was caused by the fact that Proxies *must* return the value of the property on the target when that property is non-writeable and non-configurable. Since the reactivity system always attempts to proxify the value from the target, this crashes. This commit fixes that by not proxifying such values. This however means that from that point on, we have escaped the reactivity system and will not subscribe to any changes in that object or its children.
- Loading branch information