diff --git a/module/VuFind/src/VuFind/ILS/Driver/NoILS.php b/module/VuFind/src/VuFind/ILS/Driver/NoILS.php
index f577f618c08a4ed921f77304ff2129725e2d5b61..262ce0bad5929b5ed99bb209ede8c99e385a28b4 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
+        );
     }
 
     /**