mirror of
https://github.com/YunoHost-Apps/pixelfed_ynh.git
synced 2024-09-03 20:06:04 +02:00
Update profile.vue, fix race condition in infinitescroll
This commit is contained in:
parent
6d9c30e791
commit
bf0cbdf4e9
1 changed files with 1 additions and 1 deletions
|
@ -580,7 +580,7 @@ export default {
|
||||||
},
|
},
|
||||||
|
|
||||||
infiniteTimeline($state) {
|
infiniteTimeline($state) {
|
||||||
if(this.loading) {
|
if(this.loading || this.timeline < 9) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
let apiUrl = '/api/v1/accounts/' + this.profileId + '/statuses';
|
let apiUrl = '/api/v1/accounts/' + this.profileId + '/statuses';
|
||||||
|
|
Loading…
Add table
Reference in a new issue