diff --git a/sdk/follows.go b/sdk/follows.go index f1d4671..98bd32f 100644 --- a/sdk/follows.go +++ b/sdk/follows.go @@ -19,7 +19,7 @@ type Follow struct { func (f Follow) Value() string { return f.Pubkey } func (sys *System) FetchFollowList(ctx context.Context, pubkey string) FollowList { - fl, _ := fetchGenericList[Follow](sys, ctx, pubkey, 3, parseFollow, sys.FollowListCache, false) + fl, _ := fetchGenericList(sys, ctx, pubkey, 3, parseFollow, sys.FollowListCache, false) return fl }