I have a SearchIndex subclass and I have defined a prepare method for itd.
In said prepare method, I add two entries to the prepared_data dictionary, this entries have lists as values. Later, when I get a SearchResult, I try to access these added entries' lists with the get_additional_data() method of SearchResult.
The problem is that I don't get lists back, I only get one item.
How can I get the whole list back?
