Skip to content

Commit

Permalink
fix(i18n): Fixed typo
Browse files Browse the repository at this point in the history
Signed-off-by: rakekniven <[email protected]>
  • Loading branch information
rakekniven authored Jan 12, 2024
1 parent 84a6122 commit d9667b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/Service/FreePrompt/FreePromptService.php
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@ public function processPrompt(string $prompt, int $nResults): string {

if ($this->userId === null) {
$this->logger->warning('User id is null when trying to process prompt');
throw new Exception($this->l10n->t('Failed process prompt; unkown user'), Http::STATUS_INTERNAL_SERVER_ERROR);
throw new Exception($this->l10n->t('Failed process prompt; unknown user'), Http::STATUS_INTERNAL_SERVER_ERROR);
}

// Generate a unique id for this generation
Expand Down

0 comments on commit d9667b3

Please sign in to comment.