From 9daa6f3b7b1ee88be910cde6985601c371bd9089 Mon Sep 17 00:00:00 2001 From: Pol Dellaiera Date: Thu, 19 Aug 2021 16:06:05 +0200 Subject: [PATCH] fix: Fix property name. --- src/Bundle/ChillWopiBundle/src/Service/Wopi/ChillWopi.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/Bundle/ChillWopiBundle/src/Service/Wopi/ChillWopi.php b/src/Bundle/ChillWopiBundle/src/Service/Wopi/ChillWopi.php index da8dde781..b8715eb47 100644 --- a/src/Bundle/ChillWopiBundle/src/Service/Wopi/ChillWopi.php +++ b/src/Bundle/ChillWopiBundle/src/Service/Wopi/ChillWopi.php @@ -144,7 +144,7 @@ final class ChillWopi implements WopiInterface // TODO: Add strict typing in champs-libres/async-uploader-bundle /** @var StdClass $object */ - $object = $this->tempUrlGeneratorInterface->generate('GET', $storedObject->getFilename()); + $object = $this->tempUrlGenerator->generate('GET', $storedObject->getFilename()); $response = $this->httpClient->sendRequest($this->psr17->createRequest('GET', $object->url));