Skip to content

Commit

Permalink
Release 1.7.7 (#2455)
Browse files Browse the repository at this point in the history
* fix: handling of marketplace payments

* feat(version): bump to 1.7.7
  • Loading branch information
andregoncalves authored Nov 20, 2020
1 parent 8caf5bc commit c0e48c4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "selfkey-identity-wallet",
"productName": "SelfKey Identity Wallet",
"version": "1.7.6",
"version": "1.7.7",
"description": "The Official SelfKey Identity Wallet for Desktop",
"browser": [
"chrome"
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@ export default class MarketplaceKeyFiComponent extends MarketplaceComponent {
userHasPaid = () => {
const { product } = this.props;
if (product && +product.price === 0) {
return 0;
return 1;
}
const application = this.getLastApplication();
if (!application || !application.payments) {
Expand Down

0 comments on commit c0e48c4

Please sign in to comment.