diff --git a/metatag.install b/metatag.install
index 29f44a7..57eb475 100644
--- a/metatag.install
+++ b/metatag.install
@@ -1253,6 +1253,10 @@ function metatag_update_7018(&$sandbox) {
       $conditions['language'] = $language;
     }
     $records = entity_load($entity_type, array($entity_id), $conditions);
+    // Try to fallback to default language if no record was found.
+    if (!empty($conditions) && empty($records)) {
+      $records = entity_load($entity_type, array($entity_id));
+    }
 
     // Fix this record.
     if (!empty($records)) {
