diff --git a/entityreference_backreference.info b/entityreference_backreference.info
index 4a611e1..2a56d38 100644
--- a/entityreference_backreference.info
+++ b/entityreference_backreference.info
@@ -1,4 +1,4 @@
 name = Entityreference backreference
-description = Expose reverse entity references to Entity API.
+description = Expose reverse references to Entity API.
 core = 7.x
 dependencies[] = entity
diff --git a/entityreference_backreference.module b/entityreference_backreference.module
index de67e6d..97c5cdf 100644
--- a/entityreference_backreference.module
+++ b/entityreference_backreference.module
@@ -22,13 +22,12 @@ function entityreference_backreference_entity_property_info_alter(&$info) {
     if (isset($entity_info[$target])) {
       $field_name = $field['field_name'];
       foreach ($field['bundles'] as $entity_type => $bundles) {
-        $type = $field['cardinality'] == 1 ? $entity_type : 'list<' . $entity_type . '>';
         $info[$target]['properties'][$field_name . '_' . $entity_type . '_eb'] = array(
           'label' => t('@entity_type entity referenced from @field_name', array('@entity_type' => $entity_type, '@field_name' => $field_name)),
           'description' => t('A bridge to the @entity_type entity that is referenced via @field_name', array('@entity_type' => $entity_type, '@field_name' => $field_name)),
           'getter callback' => 'entityreference_backreference_related_entities',
           'field' => $field,
-          'type' => $type,
+          'type' => 'list<' . $entity_type . '>',
         );
       }
     }
@@ -39,9 +38,10 @@ function entityreference_backreference_entity_property_info_alter(&$info) {
  * Getter callback for related entities.
  */
 function entityreference_backreference_related_entities($entity, array $options, $name, $type, $info) {
+  // Create an array that will contains the backwards references.
+  $entity_ids = array();
   // Retrieve the field.
   $field = $info['field'];
-  $entity_ids = $field['cardinality'] == 1 ? '' : array();
   // Retrieve the entity to target.
   $entity_target = entity_property_list_extract_type($info['type']);
   // Extract the id of the entity.
@@ -52,9 +52,8 @@ function entityreference_backreference_related_entities($entity, array $options,
           ->fieldCondition($field['field_name'], key($field['columns']), $id);
     $result = $query->execute();
     if (isset($result[$entity_target])) {
-      $entity_ids = $field['cardinality'] == 1 ? key($result[$entity_target]) : array_keys($result[$entity_target]);
+      $entity_ids = array_keys($result[$entity_target]);
     }
   }
-
   return $entity_ids;
 }
