On deleted nodes (presumably other entities) while not having entity_print permissions for the entire entity, /entityprint/node/nid produces "EntityMalformedException: Missing bundle property on entity of type node."
Visit /entityprint/node/[any non-existent node id] while not having permission to entity_print any bundle.
In function entity_print_access(),
// Check for entity bundle access permission.
$entity = entity_load_single($entity_type, $entity_id);
+ if ($entity === FALSE) {
+ return FALSE;
+ }
list($id, $vid, $bundle) = entity_extract_ids($entity_type, $entity);
Closed: outdated
1.0
User interface
Not all content is available!
It's likely this issue predates Contrib.social: some issue and comment data are missing.