about summary refs log tree commit diff
path: root/src/state/models/feed-view.ts
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2023-03-17 15:20:34 -0500
committerPaul Frazee <pfrazee@gmail.com>2023-03-17 15:20:34 -0500
commit6af2585f3232fedd1864ff187bae0153967c7f38 (patch)
treecde395a09b2b4eac8f8e603f6045f809c30ee500 /src/state/models/feed-view.ts
parent308b1e8beb79170c7caae2f9d9b9fc898ae7813c (diff)
downloadvoidsky-6af2585f3232fedd1864ff187bae0153967c7f38.tar.zst
Choose good stuff based on service
Diffstat (limited to 'src/state/models/feed-view.ts')
-rw-r--r--src/state/models/feed-view.ts4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/state/models/feed-view.ts b/src/state/models/feed-view.ts
index a62dbc983..3d7680fbc 100644
--- a/src/state/models/feed-view.ts
+++ b/src/state/models/feed-view.ts
@@ -16,7 +16,7 @@ import {RootStoreModel} from './root-store'
 import * as apilib from 'lib/api/index'
 import {cleanError} from 'lib/strings/errors'
 import {RichText} from 'lib/strings/rich-text'
-import {SUGGESTED_FOLLOWS} from 'lib/constants'
+import {SUGGESTED_FOLLOWS, GOOD_STUFF} from 'lib/constants'
 import {
   getCombinedCursors,
   getMultipleAuthorsPosts,
@@ -643,7 +643,7 @@ export class FeedModel {
     } else if (this.feedType === 'goodstuff') {
       const res = await this.rootStore.api.app.bsky.feed.getAuthorFeed({
         ...params,
-        author: 'jay.bsky.social',
+        author: GOOD_STUFF(String(this.rootStore.agent.service)),
       } as GetAuthorFeed.QueryParams)
       res.data.feed = mergePosts([res], {repostsOnly: true})
       res.data.feed.forEach(item => {