Remove extra space in price server URL

This commit is contained in:
wiz 2020-11-23 09:48:06 +09:00
parent 1521d47cc7
commit 8fab153fb0
No known key found for this signature in database
GPG Key ID: A394E332255A6173

View File

@ -20,7 +20,7 @@ class FiatConversion {
private async updateCurrency(): Promise<void> {
try {
const response = await axios.get('https://price.bisq.wiz.biz/getAllMarketPrices ');
const response = await axios.get('https://price.bisq.wiz.biz/getAllMarketPrices');
const usd = response.data.data.find((item: any) => item.currencyCode === 'USD');
this.conversionRates = {
'USD': usd.price,