Skip to content

Commit

Permalink
cs:fix
Browse files Browse the repository at this point in the history
Signed-off-by: Marcel Klehr <mklehr@gmx.net>
  • Loading branch information
marcelklehr committed Jul 7, 2023
1 parent 1747068 commit fb657bf
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/private/LanguageModel/LanguageModelManager.php
Original file line number Diff line number Diff line change
Expand Up @@ -123,7 +123,7 @@ public function runTask(ILanguageModelTask $task): string {
if ($task->getId() === null) {
$taskEntity = $this->taskMapper->insert(Task::fromLanguageModelTask($task));
$task->setId($taskEntity->getId());
}else {
} else {
$this->taskMapper->update(Task::fromLanguageModelTask($task));
}
$output = $task->visitProvider($provider);
Expand Down

0 comments on commit fb657bf

Please sign in to comment.