diff --git a/CHANGELOG.md b/CHANGELOG.md index 9725f1a4..4675cc42 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -7,6 +7,12 @@ and this project adheres to [Semantic Versioning](http://semver.org/). ## [Unreleased] +## [1.2.2 - 2023-11-13] + +### Fixed + +- Fix "of the fix" of the bug in requestToExApp function introduced in previous release. + ## [1.2.1 - 2023-11-08] ### Fixed diff --git a/appinfo/info.xml b/appinfo/info.xml index 262dad74..9c196b75 100644 --- a/appinfo/info.xml +++ b/appinfo/info.xml @@ -40,7 +40,7 @@ to join us in shaping a more versatile, stable, and secure app landscape. *Your insights, suggestions, and contributions are invaluable to us.* ]]> - 1.2.1 + 1.2.2 agpl Andrey Borysenko Alexander Piskun diff --git a/lib/Service/AppAPIService.php b/lib/Service/AppAPIService.php index 40359883..a310af31 100644 --- a/lib/Service/AppAPIService.php +++ b/lib/Service/AppAPIService.php @@ -528,7 +528,7 @@ public function aeRequestToExApp( $this->logger->error(sprintf('Error while inserting ExApp %s user. Error: %s', $exApp->getAppid(), $e->getMessage()), ['exception' => $e]); return ['error' => 'Error while inserting ExApp user: ' . $e->getMessage()]; } - return $this->requestToExApp($exApp, $userId, $route, $method, $params, $options, $request); + return $this->requestToExApp($exApp, $route, $userId, $method, $params, $options, $request); } /**