Hello miccet,
I found what looks like to be a fix (already submitted to alex) but you might rush and try for yourself.
add this code:
} elseif (isset($pageParams->query_vars['pagename'])) {
$postId = url_to_postid($pageParams->query_vars['pagename']);
$object = get_post($postId);
$objectType = $object->post_type;
$objectId = $object->ID;
}
as another elseif of the block you said in your post.
file:
user-access-manager/class/UserAccessManager.class.php
function:
public function redirect($headers, $pageParams)
near line 1977 (another else if block there)
Regards