@defuse-protocol/intents-sdk 0.19.2 → 0.19.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.cjs +1 -1
- package/dist/index.js +1 -1
- package/package.json +1 -1
package/dist/index.cjs
CHANGED
|
@@ -1327,7 +1327,7 @@ var OmniBridge = class {
|
|
|
1327
1327
|
{
|
|
1328
1328
|
...args.retryOptions ?? import_internal_utils15.RETRY_CONFIGS.FIVE_MINS_STEADY,
|
|
1329
1329
|
handleError: (err, ctx) => {
|
|
1330
|
-
if (err
|
|
1330
|
+
if (err === args.signal?.reason) {
|
|
1331
1331
|
ctx.abort();
|
|
1332
1332
|
}
|
|
1333
1333
|
}
|
package/dist/index.js
CHANGED
|
@@ -1294,7 +1294,7 @@ var OmniBridge = class {
|
|
|
1294
1294
|
{
|
|
1295
1295
|
...args.retryOptions ?? RETRY_CONFIGS2.FIVE_MINS_STEADY,
|
|
1296
1296
|
handleError: (err, ctx) => {
|
|
1297
|
-
if (err
|
|
1297
|
+
if (err === args.signal?.reason) {
|
|
1298
1298
|
ctx.abort();
|
|
1299
1299
|
}
|
|
1300
1300
|
}
|