Skip to content

Commit

Permalink
Fixed how currencies exchange rates are displayed
Browse files Browse the repository at this point in the history
  • Loading branch information
mvarnagiris committed Jan 31, 2015
1 parent 0f9cd73 commit 54462d7
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 1 deletion.
3 changes: 3 additions & 0 deletions CHANGELOG.md
@@ -1,3 +1,6 @@
###Version: 0.18.2
- ```fix``` Currencies exchange rates are now displayed correctly.

###Version: 0.18.1
- ```fix``` Fixed currency exchange rates update.
- ```fix``` Categories report shows tag amounts again.
Expand Down
Expand Up @@ -64,7 +64,7 @@ public ViewHolder(View itemView, CurrenciesManager currenciesManager, AmountForm
exchangeRateTextView.setText(null);
} else {
codeTextView.setTextColor(textPrimaryColor);
exchangeRateTextView.setText(String.valueOf(currenciesManager.getExchangeRate(currencyFormat.getCode())));
exchangeRateTextView.setText(String.valueOf(currenciesManager.getExchangeRate(currencyFormat.getCode(), currenciesManager.getMainCurrencyCode())));
}
}
}
Expand Down

0 comments on commit 54462d7

Please sign in to comment.