From a44eb8f2cf10f8a8c204d2b23d5ba502cf1bc38c Mon Sep 17 00:00:00 2001 From: Chris Caron Date: Sat, 11 May 2024 15:04:38 -0400 Subject: [PATCH] Re-add file:// sanitation --- apprise/attachment/file.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apprise/attachment/file.py b/apprise/attachment/file.py index c48a707aed..e8a2cf26b8 100644 --- a/apprise/attachment/file.py +++ b/apprise/attachment/file.py @@ -128,7 +128,7 @@ def parse_url(url): """ - results = AttachBase.parse_url(url, verify_host=False) + results = AttachBase.parse_url(url, verify_host=False, sanitize=True) if not results: # We're done early; it's not a good URL return results