Remove redundant filtering of shared journals.

This is already done in sync gate.
master
Tom Hacohen 2017-12-26 11:41:14 +00:00
parent 84a0bf2a8e
commit 763b5b757f
1 changed files with 0 additions and 6 deletions

View File

@ -48,12 +48,6 @@ const itemsSelector = createSelector(
syncInfo.forEach(
(syncJournal) => {
const syncEntries = syncJournal.entries;
const journal = syncJournal.journal;
// FIXME: Skip shared journals for now
if (journal.key) {
return;
}
const collectionInfo = syncJournal.collection;