Fix remaining broken umlauts in main.ts and debrid.ts
Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
This commit is contained in:
parent
e212ccc86f
commit
dd4264a936
@ -1988,7 +1988,7 @@ export class DebridService {
|
|||||||
// Fall through to normal provider chain
|
// Fall through to normal provider chain
|
||||||
}
|
}
|
||||||
} else if (this.isProviderConfiguredFor(settings, routedProvider) && this.isProviderDailyLimited(settings, routedProvider)) {
|
} else if (this.isProviderConfiguredFor(settings, routedProvider) && this.isProviderDailyLimited(settings, routedProvider)) {
|
||||||
logger.info(`Hoster-Zuordnung ${hosterKey} ? ${PROVIDER_LABELS[routedProvider]} ?bersprungen (${this.formatProviderLimitMessage(settings, routedProvider)})`);
|
logger.info(`Hoster-Zuordnung ${hosterKey} → ${PROVIDER_LABELS[routedProvider]} übersprungen (${this.formatProviderLimitMessage(settings, routedProvider)})`);
|
||||||
} else {
|
} else {
|
||||||
logger.warn(`Hoster-Zuordnung ${hosterKey} → ${PROVIDER_LABELS[routedProvider]} übersprungen (Provider nicht konfiguriert/deaktiviert)`);
|
logger.warn(`Hoster-Zuordnung ${hosterKey} → ${PROVIDER_LABELS[routedProvider]} übersprungen (Provider nicht konfiguriert/deaktiviert)`);
|
||||||
}
|
}
|
||||||
|
|||||||
@ -310,7 +310,7 @@ function registerIpcHandlers(): void {
|
|||||||
ipcMain.handle(IPC_CHANNELS.RESET_DEBRID_LINK_API_KEY_DAILY_USAGE, (_event: IpcMainInvokeEvent, keyId: string) => {
|
ipcMain.handle(IPC_CHANNELS.RESET_DEBRID_LINK_API_KEY_DAILY_USAGE, (_event: IpcMainInvokeEvent, keyId: string) => {
|
||||||
const validatedKeyId = validateString(keyId, "keyId").trim();
|
const validatedKeyId = validateString(keyId, "keyId").trim();
|
||||||
if (!validatedKeyId) {
|
if (!validatedKeyId) {
|
||||||
throw new Error("keyId ist ung?ltig");
|
throw new Error("keyId ist ungültig");
|
||||||
}
|
}
|
||||||
return controller.resetDebridLinkApiKeyDailyUsage(validatedKeyId);
|
return controller.resetDebridLinkApiKeyDailyUsage(validatedKeyId);
|
||||||
});
|
});
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user