Multicolumn Bluesky client powered by Angular
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

misc: lower post limit retrieve on columns to improve performance

kbenlloch 74ab8d84 08ab14c8

+6 -6
+2 -2
src/app/components/feeds/author-feed/author-feed.component.ts
··· 96 96 from(agent.getAuthorFeed({ 97 97 actor: this.did(), 98 98 filter: this.filter(), 99 - limit: 25 99 + limit: 15 100 100 })).subscribe({ 101 101 next: response => { 102 102 this.feed().nativeElement.scrollTo({top:0}); ··· 119 119 actor: this.did(), 120 120 filter: this.filter(), 121 121 cursor: this.cursor, 122 - limit: 25 122 + limit: 15 123 123 })).subscribe({ 124 124 next: response => { 125 125 this.cursor = response.data.cursor;
+2 -2
src/app/components/feeds/search-feed/search-feed.component.ts
··· 85 85 from(agent.app.bsky.feed.searchPosts({ 86 86 q: this.query(), 87 87 sort: this.sort(), 88 - limit: 25 88 + limit: 15 89 89 })).subscribe({ 90 90 next: response => { 91 91 this.feed().nativeElement.scrollTo({top:0}); ··· 108 108 q: this.query(), 109 109 sort: this.sort(), 110 110 cursor: this.cursor, 111 - limit: 25 111 + limit: 15 112 112 })).subscribe({ 113 113 next: response => { 114 114 this.cursor = response.data.cursor;
+2 -2
src/app/components/feeds/timeline-feed/timeline-feed.component.ts
··· 85 85 initData() { 86 86 this.loading = true; 87 87 from(agent.getTimeline({ 88 - limit: 50 88 + limit: 15 89 89 })).subscribe({ 90 90 next: response => { 91 91 this.feed().nativeElement.scrollTo({top:0}); ··· 106 106 107 107 from(agent.getTimeline({ 108 108 cursor: this.cursor, 109 - limit: 50 109 + limit: 20 110 110 })).subscribe({ 111 111 next: response => { 112 112 this.cursor = response.data.cursor;