Skip to content

Commit

Permalink
fix: Use correct id in did document
Browse files Browse the repository at this point in the history
The ID should be #bsky_fg, not something invented by me. Prevented the
feed did document from being validated by Bluesky.

Signed-off-by: Snorre Magnus Davøen <[email protected]>
  • Loading branch information
snorremd committed Sep 30, 2023
1 parent fb9fd75 commit 3fe5d92
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ func Server(config *ServerConfig) *fiber.App {
"id": "did:web:" + config.Hostname,
"service": []map[string]interface{}{
{
"id": "#norsky",
"id": "#bsky_fg",
"type": "BskyFeedGenerator",
"serviceEndpoint": "https://" + config.Hostname,
},
Expand Down

0 comments on commit 3fe5d92

Please sign in to comment.