From e16e9eac042dbee975564f194ad24c7ee37cc18e Mon Sep 17 00:00:00 2001 From: Houston4444 Date: Fri, 13 Jan 2023 09:46:26 +0100 Subject: [PATCH] prevent a backward incompatibility, code was incorrect, making an infinite loop if something goes wrong with the patch file. --- src/clients/jackpatch/ray-jackpatch.py | 1 + 1 file changed, 1 insertion(+) diff --git a/src/clients/jackpatch/ray-jackpatch.py b/src/clients/jackpatch/ray-jackpatch.py index 7c706ccb..3bb87d66 100755 --- a/src/clients/jackpatch/ray-jackpatch.py +++ b/src/clients/jackpatch/ray-jackpatch.py @@ -369,6 +369,7 @@ def openFile(project_path, session_name, full_client_id): while not node.isNull(): el = node.toElement() if el.tagName() != "connection": + node = node.nextSibling() continue port_from = el.attribute('from')