mirror of
https://github.com/pixelfed/pixelfed.git
synced 2024-11-22 06:21:27 +00:00
Update Hashtag.vue component, limit pagination for guests
This commit is contained in:
parent
c7eb639a8e
commit
78d19ed847
1 changed files with 1 additions and 1 deletions
|
@ -133,7 +133,7 @@
|
|||
},
|
||||
|
||||
infiniteLoader($state) {
|
||||
if(this.page > 19) {
|
||||
if(this.page > (this.authenticated ? 19 : 3)) {
|
||||
$state.complete();
|
||||
return;
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue