Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
kawamataryo committed Nov 29, 2024
1 parent 0b92f2e commit 4d917f0
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"name": "sky-follower-bridge",
"displayName": "Sky Follower Bridge",
"version": "1.4.0",
"version": "1.4.1",
"description": "Instantly find and follow the same users from your Twitter follows on Bluesky.",
"author": "kawamataryou",
"scripts": {
Expand Down
6 changes: 4 additions & 2 deletions src/lib/hooks/useBskyUserManager.ts
Original file line number Diff line number Diff line change
Expand Up @@ -133,8 +133,10 @@ export const useBskyUserManager = () => {
description: "List imported via Sky Follower Bridge",
userDids: filteredUsers.map((user) => user.did),
});
const myProfile = await bskyClient.current.getMyProfile();
return `https://bsky.app/profile/${myProfile.handle}/lists/${listUri}`;
// TODO: Commented out temporarily due to failure in Firefox
// const myProfile = await bskyClient.current.getMyProfile();
// return `https://bsky.app/profile/${myProfile.handle}/lists/${listUri}`;
return "https://bsky.app/lists";
}, [filteredUsers, listName]);

// Follow All
Expand Down

0 comments on commit 4d917f0

Please sign in to comment.