Währungen in Kleinbuchstaben und kleine Fixes

This commit is contained in:
2026-05-29 01:17:34 +02:00
parent f1d88eda64
commit 3631674ee3
8 changed files with 17 additions and 22 deletions

View File

@@ -23,7 +23,7 @@ function runImport() {
let match;
while ((match = CURRENCY_RATE_REGEX.exec(xml)) !== null) {
rates.push({
currency: match[1],
currency: match[1].toLowerCase(),
rate: parseFloat(match[2]),
});
}