Fix unsupported object format handling in UpdateFieldAction and DeleteObjectAction

This commit is contained in:
Jokob @NetAlertX
2026-05-09 23:39:47 +00:00
parent 1def218db5
commit 9575692a39

View File

@@ -69,7 +69,7 @@ class UpdateFieldAction(Action):
mylog("none", f"[WF] Unsupported object format: {obj}")
return obj
return None
class DeleteObjectAction(Action):
@@ -104,7 +104,7 @@ class DeleteObjectAction(Action):
mylog("none", f"[WF] Unsupported object format: {obj}")
return obj
return None
class RunPluginAction(Action):