mirror of
https://github.com/viq/NewsBlur.git
synced 2025-09-18 21:43:31 +00:00
Fix flash of stale counts on timed sync.
This commit is contained in:
parent
d9b26d5530
commit
037d0e1b32
1 changed files with 2 additions and 2 deletions
|
@ -144,7 +144,6 @@ public class Main extends NbFragmentActivity implements StateChangedListener, Sy
|
|||
|
||||
protected void onActivityResult(int requestCode, int resultCode, Intent data) {
|
||||
if (resultCode == RESULT_OK) {
|
||||
Log.d(this.getClass().getName(), "onActivityResult:RESULT_OK" );
|
||||
folderFeedList.hasUpdated();
|
||||
}
|
||||
}
|
||||
|
@ -165,7 +164,8 @@ public class Main extends NbFragmentActivity implements StateChangedListener, Sy
|
|||
*/
|
||||
@Override
|
||||
public void updatePartialSync() {
|
||||
folderFeedList.hasUpdated();
|
||||
// TODO: move 2-step sync to new async lib and remove this method entirely
|
||||
// folderFeedList.hasUpdated();
|
||||
}
|
||||
|
||||
@Override
|
||||
|
|
Loading…
Add table
Reference in a new issue