Skip to content

Commit

Permalink
Fix incorrect BSQ display
Browse files Browse the repository at this point in the history
  • Loading branch information
HenrikJannsen committed Apr 25, 2024
1 parent a43207d commit 5da34fa
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -268,7 +268,7 @@ void applyReputationScore(String userProfileId) {
switch (selectedReputationSource.get()) {
case BURNED_BSQ:
case BSQ_BOND:
valueProperty.set(String.valueOf(value));
valueProperty.set(String.valueOf(value / 100d));
break;
case PROFILE_AGE:
case BISQ1_ACCOUNT_AGE:
Expand Down

0 comments on commit 5da34fa

Please sign in to comment.