mirror of
https://github.com/Abdulazizzn/n8n-enterprise-unlocked.git
synced 2025-12-17 18:12:04 +00:00
fix(Wise Node): Fix issue when executing a transfer (#3039)
This commit is contained in:
@@ -70,7 +70,7 @@ export async function wiseApiRequest(
|
|||||||
throw new NodeApiError(this.getNode(), error);
|
throw new NodeApiError(this.getNode(), error);
|
||||||
}
|
}
|
||||||
|
|
||||||
if (response.statusCode === 200) {
|
if (response.statusCode >= 200 && response.statusCode < 300) {
|
||||||
return response.body;
|
return response.body;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user