You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jun 10, 2022. It is now read-only.
It was flagged in the MRE-SDK discord here that transform updates do not propagate to attachments when using the subscription 'transform'. A fix has been found but as it requires either the modification of the built code in the node_modules folder (Lines 186 through to the next '{' of rules.js) or the sdk itself (403-406 of rules.ts) it's not viable for most deployments.
The fix works locally but like stated, that is not a viable plan for deployment. It needs to be in the SDK. I'm stuck running on localhost-only where I can make the changes myself. This needs to
It was flagged in the MRE-SDK discord here that transform updates do not propagate to attachments when using the subscription 'transform'. A fix has been found but as it requires either the modification of the built code in the node_modules folder (Lines 186 through to the next '{' of rules.js) or the sdk itself (403-406 of rules.ts) it's not viable for most deployments.
The fix:
const syncActor = session.actorSet.get(message.payload.actor.id); const attachment = syncActor.initialization.message.payload.actor.attachment; if (syncActor && ((client.authoritative && !syncActor.grabbedBy) || (syncActor.grabbedBy === client.id) || (attachment && attachment.userId === client.userId))) {
The text was updated successfully, but these errors were encountered: