diff --git a/module/VuFind/src/VuFind/ILS/Driver/AbstractBase.php b/module/VuFind/src/VuFind/ILS/Driver/AbstractBase.php
index 8fd9125ea990ed649fa6a1961bbdf1f74be3aaac..563afe39c4d0c94ead7b07ed19881e0d70ab556f 100644
--- a/module/VuFind/src/VuFind/ILS/Driver/AbstractBase.php
+++ b/module/VuFind/src/VuFind/ILS/Driver/AbstractBase.php
@@ -153,6 +153,6 @@ abstract class AbstractBase implements DriverInterface
             'time' => time(),
             'entry' => $entry
         ];
-        $this->cache->addItem($this->formatCacheKey($key), $item);
+        $this->cache->setItem($this->formatCacheKey($key), $item);
     }
 }