From 3e0ef20fcd8bc3fdc425fb9b9f5fbdaacf4da2e1 Mon Sep 17 00:00:00 2001 From: Nex Date: Tue, 18 Jan 2022 16:05:01 +0100 Subject: [PATCH] . --- mvt/ios/modules/mixed/shortcuts.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/mvt/ios/modules/mixed/shortcuts.py b/mvt/ios/modules/mixed/shortcuts.py index ce548b0..c5ec8e4 100644 --- a/mvt/ios/modules/mixed/shortcuts.py +++ b/mvt/ios/modules/mixed/shortcuts.py @@ -100,10 +100,10 @@ class Shortcuts(IOSExtraction): action["identifier"] = action_entry["WFWorkflowActionIdentifier"] action["parameters"] = action_entry["WFWorkflowActionParameters"] - # URLs might be in multiple fields, do a simple regex search across the parameters + # URLs might be in multiple fields, do a simple regex search across the parameters. extracted_urls = check_for_links(str(action["parameters"])) - # Remove quoting characters that may have been captured by the regex + # Remove quoting characters that may have been captured by the regex. action["urls"] = [url.rstrip("',") for url in extracted_urls] actions.append(action)