Skip to content

Commit

Permalink
Fixed file save regression in privacy plugin (#7673)
Browse files Browse the repository at this point in the history
  • Loading branch information
nejch authored Nov 5, 2024
1 parent ac3315f commit eb63b60
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/plugins/privacy/plugin.py
Original file line number Diff line number Diff line change
Expand Up @@ -467,7 +467,7 @@ def _patch(self, initiator: File):

# Replace callback
def replace(match: Match):
value = match.group(1)
value = match.group("url")

# Map URL to canonical path
path = self._path_from_url(urlparse(value))
Expand Down

0 comments on commit eb63b60

Please sign in to comment.