Understanding node view update

Ah, so the problem doesn’t really have anything to do with the plugin.

When you return true from update, you are saying “yes, I can update myself to be this node”. Unconditionally returning true is a very wrong thing to do—you’ll at least want to check whether the given node matches the type that you’re implementing.

2 Likes