summaryrefslogtreecommitdiff
path: root/internal/processing
diff options
context:
space:
mode:
authorLibravatar tobi <31960611+tsmethurst@users.noreply.github.com>2021-11-13 17:29:43 +0100
committerLibravatar GitHub <noreply@github.com>2021-11-13 17:29:43 +0100
commit09ef9e639efa1b01005dcb7fc044611f277ad618 (patch)
treebef200f444b7ddd90f2b9f0fcff644da7cd85a11 /internal/processing
parentupdate dependencies (#296) (diff)
downloadgotosocial-09ef9e639efa1b01005dcb7fc044611f277ad618.tar.xz
move to ssb gofed fork (#298)
Diffstat (limited to 'internal/processing')
-rw-r--r--internal/processing/account/account_test.go2
-rw-r--r--internal/processing/federation/getfollowers.go2
-rw-r--r--internal/processing/federation/getfollowing.go2
-rw-r--r--internal/processing/federation/getoutbox.go2
-rw-r--r--internal/processing/federation/getstatus.go2
-rw-r--r--internal/processing/federation/getstatusreplies.go2
-rw-r--r--internal/processing/federation/getuser.go4
-rw-r--r--internal/processing/fromclientapi.go2
-rw-r--r--internal/processing/processor_test.go2
9 files changed, 10 insertions, 10 deletions
diff --git a/internal/processing/account/account_test.go b/internal/processing/account/account_test.go
index e2f8a1339..9bc97a77b 100644
--- a/internal/processing/account/account_test.go
+++ b/internal/processing/account/account_test.go
@@ -20,8 +20,8 @@ package account_test
import (
"codeberg.org/gruf/go-store/kv"
- "github.com/go-fed/activity/pub"
"github.com/stretchr/testify/suite"
+ "github.com/superseriousbusiness/activity/pub"
"github.com/superseriousbusiness/gotosocial/internal/config"
"github.com/superseriousbusiness/gotosocial/internal/db"
"github.com/superseriousbusiness/gotosocial/internal/email"
diff --git a/internal/processing/federation/getfollowers.go b/internal/processing/federation/getfollowers.go
index b17c90e07..aac63cd5c 100644
--- a/internal/processing/federation/getfollowers.go
+++ b/internal/processing/federation/getfollowers.go
@@ -24,7 +24,7 @@ import (
"fmt"
"net/url"
- "github.com/go-fed/activity/streams"
+ "github.com/superseriousbusiness/activity/streams"
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
)
diff --git a/internal/processing/federation/getfollowing.go b/internal/processing/federation/getfollowing.go
index e2d50d238..0715ffece 100644
--- a/internal/processing/federation/getfollowing.go
+++ b/internal/processing/federation/getfollowing.go
@@ -24,7 +24,7 @@ import (
"fmt"
"net/url"
- "github.com/go-fed/activity/streams"
+ "github.com/superseriousbusiness/activity/streams"
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
)
diff --git a/internal/processing/federation/getoutbox.go b/internal/processing/federation/getoutbox.go
index a3b2cff3c..2e8a4d3f5 100644
--- a/internal/processing/federation/getoutbox.go
+++ b/internal/processing/federation/getoutbox.go
@@ -24,7 +24,7 @@ import (
"fmt"
"net/url"
- "github.com/go-fed/activity/streams"
+ "github.com/superseriousbusiness/activity/streams"
"github.com/superseriousbusiness/gotosocial/internal/db"
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
)
diff --git a/internal/processing/federation/getstatus.go b/internal/processing/federation/getstatus.go
index a4f251023..5c13a54f6 100644
--- a/internal/processing/federation/getstatus.go
+++ b/internal/processing/federation/getstatus.go
@@ -24,7 +24,7 @@ import (
"fmt"
"net/url"
- "github.com/go-fed/activity/streams"
+ "github.com/superseriousbusiness/activity/streams"
"github.com/superseriousbusiness/gotosocial/internal/db"
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
diff --git a/internal/processing/federation/getstatusreplies.go b/internal/processing/federation/getstatusreplies.go
index 0fa0cc386..28c46269e 100644
--- a/internal/processing/federation/getstatusreplies.go
+++ b/internal/processing/federation/getstatusreplies.go
@@ -24,7 +24,7 @@ import (
"fmt"
"net/url"
- "github.com/go-fed/activity/streams"
+ "github.com/superseriousbusiness/activity/streams"
"github.com/superseriousbusiness/gotosocial/internal/db"
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
diff --git a/internal/processing/federation/getuser.go b/internal/processing/federation/getuser.go
index 0d80e528e..37444bf5d 100644
--- a/internal/processing/federation/getuser.go
+++ b/internal/processing/federation/getuser.go
@@ -24,8 +24,8 @@ import (
"fmt"
"net/url"
- "github.com/go-fed/activity/streams"
- "github.com/go-fed/activity/streams/vocab"
+ "github.com/superseriousbusiness/activity/streams"
+ "github.com/superseriousbusiness/activity/streams/vocab"
"github.com/superseriousbusiness/gotosocial/internal/gtserror"
"github.com/superseriousbusiness/gotosocial/internal/util"
)
diff --git a/internal/processing/fromclientapi.go b/internal/processing/fromclientapi.go
index db6f7382d..b8259c87a 100644
--- a/internal/processing/fromclientapi.go
+++ b/internal/processing/fromclientapi.go
@@ -24,7 +24,7 @@ import (
"fmt"
"net/url"
- "github.com/go-fed/activity/streams"
+ "github.com/superseriousbusiness/activity/streams"
"github.com/superseriousbusiness/gotosocial/internal/ap"
"github.com/superseriousbusiness/gotosocial/internal/db"
"github.com/superseriousbusiness/gotosocial/internal/gtsmodel"
diff --git a/internal/processing/processor_test.go b/internal/processing/processor_test.go
index 270682b26..181cfa63a 100644
--- a/internal/processing/processor_test.go
+++ b/internal/processing/processor_test.go
@@ -27,8 +27,8 @@ import (
"net/http"
"codeberg.org/gruf/go-store/kv"
- "github.com/go-fed/activity/streams"
"github.com/stretchr/testify/suite"
+ "github.com/superseriousbusiness/activity/streams"
"github.com/superseriousbusiness/gotosocial/internal/config"
"github.com/superseriousbusiness/gotosocial/internal/db"
"github.com/superseriousbusiness/gotosocial/internal/email"