improved code comment

This commit is contained in:
kim 2024-04-26 12:32:53 +01:00
parent 2560915163
commit 101e6bd192

View file

@ -46,7 +46,8 @@ func (f *federatingDB) Delete(ctx context.Context, id *url.URL) error {
requesting := activityContext.requestingAcct requesting := activityContext.requestingAcct
receiving := activityContext.receivingAcct receiving := activityContext.receivingAcct
// Serialize ID URI. // Serialize deleted ID URI.
// (may be status OR account)
uriStr := id.String() uriStr := id.String()
var ( var (
@ -54,7 +55,7 @@ func (f *federatingDB) Delete(ctx context.Context, id *url.URL) error {
err error err error
) )
// Attempt to delete account. // Try delete as an account URI.
ok, err = f.deleteAccount(ctx, ok, err = f.deleteAccount(ctx,
requesting, requesting,
receiving, receiving,
@ -67,7 +68,7 @@ func (f *federatingDB) Delete(ctx context.Context, id *url.URL) error {
return nil return nil
} }
// Attempt to delete status. // Try delete as a status URI.
ok, err = f.deleteStatus(ctx, ok, err = f.deleteStatus(ctx,
requesting, requesting,
receiving, receiving,