It is. Thanks for reporting!
Should be fixed in the next update. Just a few missing null checks.
For now, you can also fix it on your end by opening SkeletonRenderer.cs and looking for the definition of OnDisable() (should be around line 164)
And replacing the code with this:
void OnDisable () {
if (clearStateOnDisable && valid)
ClearState();
}