Handle update id endings

main
Bob Mottram 2023-05-05 11:35:22 +01:00
parent 3717096afc
commit 700fe0dde1
2 changed files with 1 additions and 6844 deletions

6843
sbom.json

File diff suppressed because it is too large Load Diff

View File

@ -824,7 +824,7 @@ def remove_id_ending(id_str: str) -> str:
id_str = id_str.split('#Create')[0]
elif id_str.endswith('#delete'):
id_str = id_str.split('#delete')[0]
elif id_str.endswith('#update'):
elif '#update' in id_str:
id_str = id_str.split('#update')[0]
return id_str