Skip to content

Commit

Permalink
Change default exchange rate source to ECB
Browse files Browse the repository at this point in the history
  • Loading branch information
printfn committed Nov 11, 2024
1 parent 938b7cf commit 58846ee
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion cli/src/config.rs
Original file line number Diff line number Diff line change
Expand Up @@ -218,7 +218,7 @@ impl Default for Config {
max_history_size: 1000,
enable_internet_access: true,
unknown_settings: UnknownSettings::Warn,
exchange_rate_source: ExchangeRateSource::UnitedNations,
exchange_rate_source: ExchangeRateSource::EuropeanUnion,
custom_units: vec![],
decimal_separator: DecimalSeparatorStyle::Dot,
unknown_keys: vec![],
Expand Down
2 changes: 1 addition & 1 deletion cli/src/default_config.toml
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ enable-internet-access = true
# * `EU` retrieves data from the EU central bank
# (endpoint: https://www.ecb.europa.eu/stats/eurofxref/eurofxref-daily.xml)
# * 'disabled' will disable loading of exchange rate data
exchange-rate-source = "UN"
exchange-rate-source = "EU"

# Decimal and thousands separator style. This can be used to switch
# between e.g. 1,234.56 and 1.234,56.
Expand Down

0 comments on commit 58846ee

Please sign in to comment.