mirror of
https://github.com/superseriousbusiness/gotosocial
synced 2025-06-05 21:59:39 +02:00
[bugfix] Be more lenient when parsing mastodown following.csv (#3311)
* [bugfix] Be more lenient when parsing mastodown following.csv * use follow.Notify
This commit is contained in:
@ -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())
|
||||
|
Reference in New Issue
Block a user