From c4720934fc87cacc47fe75ed8760158c30aca1d3 Mon Sep 17 00:00:00 2001 From: LittleSheep Date: Sat, 15 Mar 2025 00:06:25 +0800 Subject: [PATCH] :bug: Fix some bugs --- pkg/internal/services/mastodon/fetch.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/internal/services/mastodon/fetch.go b/pkg/internal/services/mastodon/fetch.go index fff8daf..b32aeab 100644 --- a/pkg/internal/services/mastodon/fetch.go +++ b/pkg/internal/services/mastodon/fetch.go @@ -64,7 +64,7 @@ func FetchTimeline(server string, limit int, useTrend bool) ([]MastodonPost, err lo.Ternary( useTrend, "%s/api/v1/trends/statuses?limit=%d", - "%s/api/v1/timelines/public?limit=%d", + "%s/api/v1/timelines/public?local=true&limit=%d", ), server, limit,