Skip to content

Fix Paybis min/max regex to also support integers #5602

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 1 commit into from
May 28, 2025
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -17,6 +17,7 @@
- fixed: Show deprecated stake policies with allocations
- fixed: No longer show FIO onboarding modal while in Duress Mode.
- fixed: Prevent pin changes which match duress pin.
- fixed: Fix regex for Paybis min/max amounts

## 4.28.1 (2025-05-28)

Expand Down
4 changes: 2 additions & 2 deletions src/plugins/gui/providers/paybisProvider.ts
Original file line number Diff line number Diff line change
Expand Up @@ -581,8 +581,8 @@ export const paybisProvider: FiatProviderFactory = {
let lastError
for (const e of pmErrors) {
lastError = e
const maxMatch = e.error.message.match(/^Amount must be less than (\d+\.\d+) ([A-Z]+)/)
const minMatch = e.error.message.match(/^Minimum amount is (\d+\.\d+) ([A-Z]+)/)
const maxMatch = e.error.message.match(/^Amount must be less than (\d+(?:\.\d+)?) ([A-Z]+)/)
const minMatch = e.error.message.match(/^Minimum amount is (\d+(?:\.\d+)?) ([A-Z]+)/)
if (maxMatch != null) {
throw new FiatProviderError({
providerId,
Expand Down
Loading