1
0
Fork 0
mirror of https://github.com/anyproto/anytype-ts.git synced 2025-06-08 05:57:02 +09:00

JS-6440: fix

This commit is contained in:
Andrew Simachev 2025-02-18 13:49:24 +01:00
parent 75fafc6f94
commit 81c0544098
No known key found for this signature in database
GPG key ID: 1DFE44B21443F0EF

View file

@ -1088,7 +1088,7 @@ class UtilCommon {
};
// Skip Brazilian Real
if (/R$/.test(m1) || /R$/.test(m2)) {
if (!/^\\/.test(m2) && (/R$/.test(m1) || /R$/.test(m2))) {
return;
};