Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,10 @@ private String normalizeCollection(String collection) {
return COLLECTION_USER_SESSION;
}

if ("summary_data".equals(normalized)) {
return COLLECTION_SUMMARY;
}

return normalized;
}

Expand Down Expand Up @@ -162,7 +166,7 @@ private void storeSummaryPayload(
.document(existingDoc.getId())
.set(record)
.addOnSuccessListener(aVoid ->
Log.d(TAG, "Updated summary payload"))
Log.d(TAG, "Updated summary payload with id: "+existingDoc.getId()))
.addOnFailureListener(e ->
Log.e(TAG, "Failed to update summary payload", e));

Expand Down