Skip to content

Commit

Permalink
Merge PR #791 into 16.0
Browse files Browse the repository at this point in the history
Signed-off-by dreispt
  • Loading branch information
OCA-git-bot committed Nov 18, 2023
2 parents 13118a3 + 849b43b commit 9e301d0
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion report_xml/controllers/report.py
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,8 @@ def report_routes(
options=options,
**kwargs,
)
docids = [int(_id) for _id in (docids or "").split(",")]
if docids:
docids = [int(_id) for _id in docids.split(",")]
data = {**json.loads(options or "{}"), **kwargs}
context = dict(request.env.context)
if "context" in data:
Expand Down

0 comments on commit 9e301d0

Please sign in to comment.