fix: Encode filters to handle special characters
This commit is contained in:
parent
c64aa6822e
commit
779f8dbca8
1 changed files with 1 additions and 1 deletions
|
|
@ -1897,7 +1897,7 @@ def get_link_to_report(
|
|||
for value in v
|
||||
)
|
||||
else:
|
||||
conditions.append(str(k) + "=" + str(v))
|
||||
conditions.append(str(k) + "=" + quote(str(v)))
|
||||
|
||||
filters = "&".join(conditions)
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue