Fixed another python script bug and enabled debugging

This commit is contained in:
frikky
2022-08-10 19:36:04 +02:00
parent e9fd85996a
commit 822ccc0b2d
7 changed files with 84 additions and 6 deletions
+5 -1
View File
@@ -3712,7 +3712,11 @@ const AppCreator = (defaultprops) => {
headers += key + "=" + value + "\n";
}
setActionField("headers", headers.trim());
try {
setActionField("headers", headers.trim());
} catch (e) {
console.log("Failed to parse header: ", e)
}
}
if (request.body !== undefined && request.body !== null) {