Hi! Yup it seems it is the wp_safe_redirect() that might be causing this issue.
May I know if there was any change to:
/**
* logout method – called from wp_logout action
*/
public function trusona_openid_logout()
{
wp_clear_auth_cookie();
wp_safe_redirect(admin_url(‘index.php’));
exit;
}
or any part of the logout process from Trusona plugin 1.4.1 to 1.4.5?
Thanks!