diff options
Diffstat (limited to 'internal/processing')
-rw-r--r-- | internal/processing/account/import.go | 5 |
1 files changed, 5 insertions, 0 deletions
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()) |