diff --git a/frontend/src/ts/popups/quote-report-popup.ts b/frontend/src/ts/popups/quote-report-popup.ts index 43dcd956a..456eaff05 100644 --- a/frontend/src/ts/popups/quote-report-popup.ts +++ b/frontend/src/ts/popups/quote-report-popup.ts @@ -41,7 +41,10 @@ export async function show(options = defaultOptions): Promise { state.previousPopupShowCallback = previousPopupShowCallback; - const { quotes } = await QuotesController.getQuotes(Config.language); + const language = + Config.language === "swiss_german" ? "german" : Config.language; + + const { quotes } = await QuotesController.getQuotes(language); state.quoteToReport = quotes.find((quote) => { return quote.id === quoteId; });