diff options
author | Dan Finlay <dan@danfinlay.com> | 2017-09-30 11:57:15 +0800 |
---|---|---|
committer | Dan Finlay <dan@danfinlay.com> | 2017-09-30 11:57:15 +0800 |
commit | d5b0d8af4f4907398154449239465efba601eb4d (patch) | |
tree | 9f7f2b2dc9958199f96b610d8c02e8633a851919 /app/scripts | |
parent | 7bdf73b1ddb7249907be5500b35f0b91490e1893 (diff) | |
download | tangerine-wallet-browser-d5b0d8af4f4907398154449239465efba601eb4d.tar tangerine-wallet-browser-d5b0d8af4f4907398154449239465efba601eb4d.tar.gz tangerine-wallet-browser-d5b0d8af4f4907398154449239465efba601eb4d.tar.bz2 tangerine-wallet-browser-d5b0d8af4f4907398154449239465efba601eb4d.tar.lz tangerine-wallet-browser-d5b0d8af4f4907398154449239465efba601eb4d.tar.xz tangerine-wallet-browser-d5b0d8af4f4907398154449239465efba601eb4d.tar.zst tangerine-wallet-browser-d5b0d8af4f4907398154449239465efba601eb4d.zip |
Version 3.10.8 - Fix Currency Conversionv3.10.8
In our conversion to the new Infura API, somehow we were sending upper-cased conversions to their lower-case sensitive API.
Fixes the first part of #2240
Diffstat (limited to 'app/scripts')
-rw-r--r-- | app/scripts/controllers/currency.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/scripts/controllers/currency.js b/app/scripts/controllers/currency.js index 9e696ce55..25a7a942e 100644 --- a/app/scripts/controllers/currency.js +++ b/app/scripts/controllers/currency.js @@ -45,7 +45,7 @@ class CurrencyController { updateConversionRate () { const currentCurrency = this.getCurrentCurrency() - return fetch(`https://api.infura.io/v1/ticker/eth${currentCurrency}`) + return fetch(`https://api.infura.io/v1/ticker/eth${currentCurrency.toLowerCase()}`) .then(response => response.json()) .then((parsedResponse) => { this.setConversionRate(Number(parsedResponse.bid)) |