fix fetching duplication

This commit is contained in:
Austin Huang 2020-11-04 13:18:20 -05:00
parent bf9dcacd40
commit e32002fac8
No known key found for this signature in database
GPG Key ID: 84C23AA04587A91F
1 changed files with 7 additions and 5 deletions

View File

@ -17,12 +17,14 @@ public class PostFetcher {
} }
public void fetch() { public void fetch() {
if (!fetching) {
fetching = true; fetching = true;
postFetchService.fetch(result -> { postFetchService.fetch(result -> {
fetching = false; fetching = false;
fetchListener.onResult(result); fetchListener.onResult(result);
}); });
} }
}
public void reset() { public void reset() {
postFetchService.reset(); postFetchService.reset();