Yup, looks like that is the case, and that’s what I suspect is happening in your case. It’s going to be a little harder to fix the bug in Imsanity due to the way the code is structured, but I’ll figure out a way to fix it.
A temporary fix in your case might be to change the switch statement in libs/utils.php
On line 60 where it says switch ( $orientation ) {
change it to this:
switch ( 0 ) {
Then it will just do nothing with the orientation, as 0 is not a valid case.