Found another issue that came up with php 8.2
In wp_cassify_plugin.php, function wp_cassify_is_in_while_list:
Explode now returns an array with an empty string if no values are found, which results in it always returning true for the function. Fixed this with this line:
$white_list_urls = empty($wp_cassify_redirect_url_white_list)? “” : explode( ‘;’, $wp_cassify_redirect_url_white_list );