mirror of
https://github.com/KokaKiwi/BarInsta
synced 2024-11-04 14:17:30 +00:00
fix fetching duplication
This commit is contained in:
parent
bf9dcacd40
commit
e32002fac8
@ -17,11 +17,13 @@ public class PostFetcher {
|
||||
}
|
||||
|
||||
public void fetch() {
|
||||
fetching = true;
|
||||
postFetchService.fetch(result -> {
|
||||
fetching = false;
|
||||
fetchListener.onResult(result);
|
||||
});
|
||||
if (!fetching) {
|
||||
fetching = true;
|
||||
postFetchService.fetch(result -> {
|
||||
fetching = false;
|
||||
fetchListener.onResult(result);
|
||||
});
|
||||
}
|
||||
}
|
||||
|
||||
public void reset() {
|
||||
|
Loading…
Reference in New Issue
Block a user