mirror of
https://github.com/superseriousbusiness/gotosocial.git
synced 2025-12-12 11:48:07 -06:00
lint + fmt
This commit is contained in:
parent
54c34feee8
commit
8640fc2b00
3 changed files with 21 additions and 21 deletions
|
|
@ -671,7 +671,7 @@ func (f *federatingDB) Delete(ctx context.Context, id *url.URL) error {
|
||||||
s := >smodel.Status{}
|
s := >smodel.Status{}
|
||||||
if err := f.db.GetWhere(where, s); err == nil {
|
if err := f.db.GetWhere(where, s); err == nil {
|
||||||
// it's a status
|
// it's a status
|
||||||
l.Debug("uri is for status with id: %s", s.ID)
|
l.Debugf("uri is for status with id: %s", s.ID)
|
||||||
if err := f.db.DeleteByID(s.ID, >smodel.Status{}); err != nil {
|
if err := f.db.DeleteByID(s.ID, >smodel.Status{}); err != nil {
|
||||||
return fmt.Errorf("Delete: err deleting status: %s", err)
|
return fmt.Errorf("Delete: err deleting status: %s", err)
|
||||||
}
|
}
|
||||||
|
|
@ -686,7 +686,7 @@ func (f *federatingDB) Delete(ctx context.Context, id *url.URL) error {
|
||||||
a := >smodel.Account{}
|
a := >smodel.Account{}
|
||||||
if err := f.db.GetWhere(where, a); err == nil {
|
if err := f.db.GetWhere(where, a); err == nil {
|
||||||
// it's an account
|
// it's an account
|
||||||
l.Debug("uri is for an account with id: %s", s.ID)
|
l.Debugf("uri is for an account with id: %s", s.ID)
|
||||||
if err := f.db.DeleteByID(a.ID, >smodel.Account{}); err != nil {
|
if err := f.db.DeleteByID(a.ID, >smodel.Account{}); err != nil {
|
||||||
return fmt.Errorf("Delete: err deleting account: %s", err)
|
return fmt.Errorf("Delete: err deleting account: %s", err)
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue