changing more stuff

This commit is contained in:
tsmethurst 2021-08-24 12:52:52 +02:00
commit 0f7cfa75f3
126 changed files with 1060 additions and 920 deletions

View file

@ -18,8 +18,11 @@
package federation
import "net/url"
import (
"context"
"net/url"
)
func (f *federator) Handshaking(username string, remoteAccountID *url.URL) bool {
return f.dereferencer.Handshaking(username, remoteAccountID)
func (f *federator) Handshaking(ctx context.Context, username string, remoteAccountID *url.URL) bool {
return f.dereferencer.Handshaking(ctx, username, remoteAccountID)
}