diff --git a/module/VuFind/src/VuFind/Auth/ILSAuthenticatorFactory.php b/module/VuFind/src/VuFind/Auth/ILSAuthenticatorFactory.php
index e5a40c00ba5c37c5ab97210eb5b1a132ab035bb9..68c7f1faa355b99c5fbede7cea2f9c64cb57cdd0 100644
--- a/module/VuFind/src/VuFind/Auth/ILSAuthenticatorFactory.php
+++ b/module/VuFind/src/VuFind/Auth/ILSAuthenticatorFactory.php
@@ -77,6 +77,6 @@ class ILSAuthenticatorFactory implements FactoryInterface
         };
         $cfg = $container->get('ProxyManager\Configuration');
         $factory = new \ProxyManager\Factory\LazyLoadingValueHolderFactory($cfg);
-        return $factory->createProxy('VuFind\Auth\ILSAuthenticator', $callback);
+        return $factory->createProxy($requestedName, $callback);
     }
 }