@Jay I actually don't use GlobalMute in plugins, maybe it is a bug. But you can solve it with that method;
Delete Global Mute unit from midi chain and delete this code from "
inline function setValidLicense" in the Authorization HM.js
GlobalMute.setAttribute(0, 1 - isValid);
Instert a Simple Gain (name it "SimpleGainMute") in the end of your fx chain.
Set the volume of that SimpleGainMute to -100dB.
And then put this conditional statement into your "
inline function setValidLicense" in the Authorization HM.js
if is valid
SimpleGainMute.setBypassed(false);
if is not valid
SimpleGainMute.setBypassed(true);
Done ;)