mirror of
https://github.com/hay-kot/mealie.git
synced 2025-08-21 22:13:31 -07:00
Merge 0b14007b25
into 6f0183cc4b
This commit is contained in:
commit
dbb7f74788
2 changed files with 2 additions and 2 deletions
|
@ -16,6 +16,6 @@ export class AdminDebugAPI extends BaseAPI {
|
|||
formData.append("extension", fileName.split(".").pop() ?? "");
|
||||
}
|
||||
|
||||
return await this.requests.post<DebugResponse>(routes.openai, formData);
|
||||
return await this.requests.post<DebugResponse>(routes.openai, formData, { timeout: undefined });
|
||||
}
|
||||
}
|
||||
|
|
|
@ -169,7 +169,7 @@ export class RecipeAPI extends BaseCRUDAPI<CreateRecipe, Recipe, Recipe> {
|
|||
apiRoute = `${apiRoute}?translateLanguage=${translateLanguage}`;
|
||||
}
|
||||
|
||||
return await this.requests.post<string>(apiRoute, formData, { timeout: 120000 });
|
||||
return await this.requests.post<string>(apiRoute, formData, { timeout: undefined });
|
||||
}
|
||||
|
||||
async parseIngredients(parser: Parser, ingredients: Array<string>) {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue