Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion lib/Migration/Version030900Date20251006152735.php
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ public function __construct(
public function postSchemaChange(IOutput $output, Closure $schemaClosure, array $options): void {
// we refresh the model list to make sure they are stored in oc_appconfig
// so they are available immediately after the app upgrade to populate the task types enum values
$this->openAIAPIService->getModels(null, true);
try {
$this->openAIAPIService->getModels(null, true);
} catch (\Exception) {
}
}
}
Loading