Keep action replays around until there is less risk of them being needed.

This commit is contained in:
dosiecki 2015-02-23 16:08:10 -08:00
parent 365f370dbf
commit ced42fc2f8

View file

@ -347,7 +347,9 @@ public class NBSyncService extends Service {
for (ReadingAction ra : FollowupActions) {
ra.doLocal(dbHelper);
}
FollowupActions.clear();
if (PendingFeed == null) {
FollowupActions.clear();
}
NbActivity.updateAllActivities(false);
}