From d4d6631435f3a5870fecc870ffe5be84d980ab4c Mon Sep 17 00:00:00 2001 From: tobi <31960611+tsmethurst@users.noreply.github.com> Date: Mon, 16 Sep 2024 20:39:15 +0200 Subject: [bugfix] Be more lenient when parsing mastodown following.csv (#3311) * [bugfix] Be more lenient when parsing mastodown following.csv * use follow.Notify --- internal/processing/account/import.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'internal/processing') diff --git a/internal/processing/account/import.go b/internal/processing/account/import.go index 200d971b8..68e843cfa 100644 --- a/internal/processing/account/import.go +++ b/internal/processing/account/import.go @@ -188,6 +188,10 @@ func importFollowingAsyncF( // Show reblogs on // the new follow. showReblogs = follow.ShowReblogs + + // Notify when new + // follow posts. + notify = follow.Notify ) if overwrite { @@ -218,6 +222,7 @@ func importFollowingAsyncF( &apimodel.AccountFollowRequest{ ID: targetAcct.ID, Reblogs: showReblogs, + Notify: notify, }, ); errWithCode != nil { log.Errorf(ctx, "could not follow account: %v", errWithCode.Unwrap()) -- cgit v1.2.3