diff --git a/module/VuFind/src/VuFind/ILS/Driver/NoILS.php b/module/VuFind/src/VuFind/ILS/Driver/NoILS.php
index bd152226aea33fa75765f40850038a0118429915..f707850f54f41277e70ecc129faf93b76861fae5 100644
--- a/module/VuFind/src/VuFind/ILS/Driver/NoILS.php
+++ b/module/VuFind/src/VuFind/ILS/Driver/NoILS.php
@@ -113,7 +113,11 @@ class NoILS extends AbstractBase implements TranslatorAwareInterface
     {
         // Add idPrefix condition
         $idPrefix = $this->getIdPrefix();
-        return $this->recordLoader->load(strlen($idPrefix) ? $idPrefix . $id : $id);
+        return $this->recordLoader->load(
+            strlen($idPrefix) ? $idPrefix . $id : $id,
+            DEFAULT_SEARCH_BACKEND,
+            true    // tolerate missing records
+        );
     }
 
     /**