Description
Method DestinationView.browseMessages(String) should return a homogeneous List of Message(s). Therefore, line 196 of DestinationView.java must not call OpenTypeSupport.convert(), and should be changed:
From:
answer.add(OpenTypeSupport.convert(message));
To:
answer.add(message);
Just like line 200 that follows.