Skip to content
Snippets Groups Projects
Commit b638b48a authored by Christoph Thelen's avatar Christoph Thelen
Browse files

Create the correct objects when recycling documents

parent 967e152e
Branches
Tags
No related merge requests found
......@@ -525,9 +525,10 @@ public class CouchDBDao implements IDatabaseDao {
LoggedIn loggedIn = new LoggedIn();
if (results.getJSONArray("rows").optJSONObject(0) != null) {
loggedIn = (LoggedIn) JSONObject.toBean(
results.getJSONArray("rows").optJSONObject(0).optJSONObject("value"),
LoggedIn.class);
JSONObject json = results.getJSONArray("rows").optJSONObject(0).optJSONObject("value");
loggedIn = (LoggedIn) JSONObject.toBean(json, LoggedIn.class);
Collection<VisitedSession> visitedSessions = JSONArray.toCollection(json.getJSONArray("visitedSessions"), VisitedSession.class);
loggedIn.setVisitedSessions(new ArrayList<VisitedSession>(visitedSessions));
}
loggedIn.setUser(u.getUsername());
......
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment