Skip to content
Snippets Groups Projects
Commit a8ea77a7 authored by Raphael Collet's avatar Raphael Collet
Browse files

[FIX] base: browse(record) in company-dependent field value

The faulty code modifies a dictionary in-place to apply a formatting
function to each value.  In this case, the formatting is `browse`, and
the issue occurs when `ids` contain duplicates:

    for id in ids:
        result[id] = format(result.get(id, default))

Fix it by returning a new dictionary based on `result`.

X-original-commit: bd4565e2
parent 170eaa47
No related branches found
No related tags found
No related merge requests found
Loading
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment