Skip to content

Commit eb63b60

Browse files
authored
Fixed file save regression in privacy plugin (#7673)
1 parent ac3315f commit eb63b60

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/plugins/privacy/plugin.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -467,7 +467,7 @@ def _patch(self, initiator: File):
467467

468468
# Replace callback
469469
def replace(match: Match):
470-
value = match.group(1)
470+
value = match.group("url")
471471

472472
# Map URL to canonical path
473473
path = self._path_from_url(urlparse(value))

0 commit comments

Comments
 (0)