bump version

This commit is contained in:
kawamataryo 2024-11-30 00:38:11 +09:00
parent 0b92f2e973
commit 4d917f0e98
2 changed files with 5 additions and 3 deletions

View File

@ -1,7 +1,7 @@
{ {
"name": "sky-follower-bridge", "name": "sky-follower-bridge",
"displayName": "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.", "description": "Instantly find and follow the same users from your Twitter follows on Bluesky.",
"author": "kawamataryou", "author": "kawamataryou",
"scripts": { "scripts": {

View File

@ -133,8 +133,10 @@ export const useBskyUserManager = () => {
description: "List imported via Sky Follower Bridge", description: "List imported via Sky Follower Bridge",
userDids: filteredUsers.map((user) => user.did), userDids: filteredUsers.map((user) => user.did),
}); });
const myProfile = await bskyClient.current.getMyProfile(); // TODO: Commented out temporarily due to failure in Firefox
return `https://bsky.app/profile/${myProfile.handle}/lists/${listUri}`; // const myProfile = await bskyClient.current.getMyProfile();
// return `https://bsky.app/profile/${myProfile.handle}/lists/${listUri}`;
return "https://bsky.app/lists";
}, [filteredUsers, listName]); }, [filteredUsers, listName]);
// Follow All // Follow All