Skip to content
This repository has been archived by the owner on Jan 7, 2022. It is now read-only.

Commit

Permalink
fix usernames
Browse files Browse the repository at this point in the history
  • Loading branch information
jk authored and jk committed Aug 4, 2020
1 parent 6fa2986 commit 8dff736
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/renderer/store/handlers/users.js
Original file line number Diff line number Diff line change
Expand Up @@ -215,7 +215,7 @@ export const fetchUsers = () => async (dispatch, getState) => {
) {
minfee = parseFloat(msg.message.minFee)
}
if (!msg.spent.gte(minfee) || msg.type !== messageType.USER) {
if (msg.type !== messageType.USER || !msg.spent.gte(minfee)) {
continue
}
const user = ReceivedUser(msg)
Expand Down

0 comments on commit 8dff736

Please sign in to comment.