diff options
author | Marcel Klehr <mklehr@gmx.net> | 2023-07-19 13:15:14 +0200 |
---|---|---|
committer | Marcel Klehr <mklehr@gmx.net> | 2023-08-09 10:05:23 +0200 |
commit | 00e3fb143f42ff9506ef0d5f58ce2acaa8712449 (patch) | |
tree | 697bc0a10383ab709d282bb0aa48d3795dd11d97 /core/Controller | |
parent | 96ec6ff5eaa28bd7e8f53d84b266c0fb709cf205 (diff) | |
download | nextcloud-server-00e3fb143f42ff9506ef0d5f58ce2acaa8712449.tar.gz nextcloud-server-00e3fb143f42ff9506ef0d5f58ce2acaa8712449.zip |
Remove Task::factory method
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
(cherry picked from commit 7389567c7d05ba994533b7273cba1e5818a20b94)
Diffstat (limited to 'core/Controller')
-rw-r--r-- | core/Controller/TextProcessingApiController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Controller/TextProcessingApiController.php b/core/Controller/TextProcessingApiController.php index 0c723ebace3..58036fb25bc 100644 --- a/core/Controller/TextProcessingApiController.php +++ b/core/Controller/TextProcessingApiController.php @@ -91,7 +91,7 @@ class TextProcessingApiController extends \OCP\AppFramework\OCSController { */ public function schedule(string $input, string $type, string $appId, string $identifier = ''): DataResponse { try { - $task = Task::factory($type, $input, $this->userId, $appId, $identifier); + $task = new Task($type, $input, $this->userId, $appId, $identifier); } catch (InvalidArgumentException) { return new DataResponse(['message' => $this->l->t('Requested task type does not exist')], Http::STATUS_BAD_REQUEST); } |