We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 7ff8c96 commit 00a683cCopy full SHA for 00a683c
packages/at_client/lib/src/util/sync_util.dart
@@ -59,7 +59,9 @@ class SyncUtil {
59
if (atCommitLog == null) {
60
return [];
61
}
62
- return atCommitLog!.getChanges(seqNum, regex);
+ return (await atCommitLog!.getChanges(seqNum, regex))
63
+ .where((commitEntry) => !commitEntry.atKey!.startsWith('local:'))
64
+ .toList();
65
66
67
//#TODO change return type to enum which says in sync, local ahead or server ahead
0 commit comments