mobile bluesky app made with flutter lazurite.stormlightlabs.org/
mobile bluesky flutter
3
fork

Configure Feed

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

fix: explicitly use atproto proxy for getActorLikes

+2 -2
+1 -1
lib/core/network/app_bsky_routing_policy.dart
··· 48 48 'app.bsky.feed.searchPosts': AppBskyProxyMode.useProxy, 49 49 'app.bsky.feed.getPostThread': AppBskyProxyMode.useProxy, 50 50 'app.bsky.feed.getAuthorFeed': AppBskyProxyMode.useProxy, 51 + 'app.bsky.feed.getActorLikes': AppBskyProxyMode.useProxy, 51 52 52 53 /// Actor/profile endpoints (public or account-context reads). 53 54 'app.bsky.actor.getProfile': AppBskyProxyMode.bypassProxy, ··· 81 82 'app.bsky.feed.getLikes': AppBskyProxyMode.bypassProxy, 82 83 'app.bsky.feed.getQuotes': AppBskyProxyMode.bypassProxy, 83 84 'app.bsky.feed.getRepostedBy': AppBskyProxyMode.bypassProxy, 84 - 'app.bsky.feed.getActorLikes': AppBskyProxyMode.bypassProxy, 85 85 'app.bsky.feed.getListFeed': AppBskyProxyMode.bypassProxy, 86 86 'app.bsky.feed.getPosts': AppBskyProxyMode.bypassProxy, 87 87 'app.bsky.bookmark.createBookmark': AppBskyProxyMode.bypassProxy,
+1 -1
test/core/network/app_bsky_routing_policy_test.dart
··· 10 10 'app.bsky.actor.searchActorsTypeahead', 11 11 'app.bsky.graph.getList', 12 12 'app.bsky.graph.getLists', 13 - 'app.bsky.feed.getActorLikes', 14 13 'app.bsky.feed.getPosts', 15 14 'app.bsky.feed.getQuotes', 16 15 'app.bsky.unspecced.getTopicFeed', ··· 33 32 'app.bsky.feed.searchPosts', 34 33 'app.bsky.feed.getPostThread', 35 34 'app.bsky.feed.getAuthorFeed', 35 + 'app.bsky.feed.getActorLikes', 36 36 'app.bsky.notification.listNotifications', 37 37 'app.bsky.notification.getUnreadCount', 38 38 'app.bsky.notification.updateSeen',