This commit is contained in:
2025-08-15 20:14:15 +09:00
parent 0c62911ffb
commit 98d664e85a

View File

@@ -24,9 +24,12 @@ class LibreTranslateAPI {
async init() {
try {
this.allowedLanguages = (await this.handleResponse(await fetch(`${this.url}languages?api_key=${this.apiKey}`, {method: 'GET'})))?.[0]?.targets || [];
this.allowedLanguages = (await this.handleResponse(
await fetch(`${this.url}languages?api_key=${this.apiKey}`, {method: 'GET'})
))?.[0]?.targets || [];
} catch (err) {
this.logger.error(`[Chat Sync] failed to initialize languages:\n${err.stack}`);
throw err; // Re-throw to handle it upstream
}
}