mirror of
https://github.com/superseriousbusiness/gotosocial
synced 2025-02-17 20:20:55 +01:00
[bugfix] Fix pending approval check (#3316)
This commit is contained in:
parent
95614fb298
commit
e337aa83b8
@ -311,7 +311,8 @@ func (f *federatingDB) acceptStatusIRI(
|
||||
return nil
|
||||
}
|
||||
|
||||
if util.PtrOrValue(status.PendingApproval, false) {
|
||||
pendingApproval := util.PtrOrValue(status.PendingApproval, false)
|
||||
if !pendingApproval {
|
||||
// Status doesn't need approval or it's
|
||||
// already been approved by an Accept.
|
||||
// Just return.
|
||||
@ -402,7 +403,8 @@ func (f *federatingDB) acceptLikeIRI(
|
||||
return nil
|
||||
}
|
||||
|
||||
if !util.PtrOrValue(fave.PendingApproval, false) {
|
||||
pendingApproval := util.PtrOrValue(fave.PendingApproval, false)
|
||||
if !pendingApproval {
|
||||
// Like doesn't need approval or it's
|
||||
// already been approved by an Accept.
|
||||
// Just return.
|
||||
|
Loading…
x
Reference in New Issue
Block a user