Skip to content

Commit

Permalink
Merge pull request #481 from shikoko/ANDROID-641
Browse files Browse the repository at this point in the history
ANDROID-641 Crash on attempt to create a task with 2 attachments
  • Loading branch information
shikoko authored Jul 16, 2018
2 parents 4c4788a + 2d17c2a commit 719e219
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -630,7 +630,7 @@ public void onNodeSelected(String fieldId, Map<String, Node> p)
items.clear();
for (Entry<String, Node> entry : p.entrySet())
{
items.put(entry.getKey(), (Document) entry.getValue());
items.put(entry.getKey(), entry.getValue());
}

// Update documents
Expand Down

0 comments on commit 719e219

Please sign in to comment.