Skip to content

Commit 631127a

Browse files
authored
Merge pull request #3208 from humanprotocol/develop
fix: correct payment source validation logic in PaymentService (#3207)
2 parents b1bfd48 + b9a69ba commit 631127a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

packages/apps/job-launcher/server/src/modules/payment/payment.service.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -697,7 +697,7 @@ export class PaymentService {
697697
userId,
698698
PaymentSource.FIAT,
699699
)
700-
).length == 0
700+
).length > 0
701701
);
702702
}
703703

0 commit comments

Comments
 (0)