From a49f1928dccbface458c87be9c9539e8d033f026 Mon Sep 17 00:00:00 2001 From: tobi Date: Mon, 16 Sep 2024 20:22:58 +0200 Subject: [PATCH] use follow.Notify --- internal/processing/account/import.go | 5 +++++ 1 file changed, 5 insertions(+) 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())