Skip to content

Commit

Permalink
Merge pull request #2 from JHthe4/master
Browse files Browse the repository at this point in the history
Fix QR code not being encoded correctly (`+` characters)
  • Loading branch information
ss23 committed Nov 9, 2022
2 parents 9cd9d0d + 75f24cf commit d2d1e92
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions decode-qr-uri.py
Expand Up @@ -40,6 +40,7 @@
enc = False
try:
enc = query['enc'][0]
enc = enc.replace(" ","+")
except:
raise Exception('An "enc" parameter is a required part of the URI')

Expand Down

0 comments on commit d2d1e92

Please sign in to comment.