Never mind, looked through the plugin code and figured out a workaround:
add_filter (‘wp_redirect’, ‘dscsa_wp_redirect’);
function dscsa_wp_redirect($location) {
if (is_impersonating() AND trying_to_impersonate_next_user()) {
$_SERVER['HTTP_REFERER'] = home_url(home_url($_SERVER['REQUEST_URI']));
wp_logout(); //Fast User Switching Hooks into this and redirects to $_SERVER['HTTP_REFERER'])
exit;
}
}