Skip to content

Commit 16a7e75

Browse files
committed
fix: user fetching missing a slash
1 parent 873698e commit 16a7e75

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

bluesky/blueskyapi.go

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -346,7 +346,7 @@ func GetUsersInfo(pds string, token string, items []string, ignoreCache bool) ([
346346
go func(c []string) {
347347
defer wg.Done()
348348

349-
url := pds + "xrpc/app.bsky.actor.getProfiles" + "?actors=" + strings.Join(c, "&actors=")
349+
url := pds + "/xrpc/app.bsky.actor.getProfiles" + "?actors=" + strings.Join(c, "&actors=")
350350
resp, err := SendRequest(&token, http.MethodGet, url, nil)
351351
if err != nil {
352352
fmt.Println(err)

0 commit comments

Comments
 (0)