summaryrefslogtreecommitdiff
path: root/cmd/gotosocial/action/server/server.go
diff options
context:
space:
mode:
Diffstat (limited to 'cmd/gotosocial/action/server/server.go')
-rw-r--r--cmd/gotosocial/action/server/server.go5
1 files changed, 1 insertions, 4 deletions
diff --git a/cmd/gotosocial/action/server/server.go b/cmd/gotosocial/action/server/server.go
index ee327c0c5..e695e0789 100644
--- a/cmd/gotosocial/action/server/server.go
+++ b/cmd/gotosocial/action/server/server.go
@@ -150,10 +150,7 @@ var Start action.GTSAction = func(ctx context.Context) error {
}
// build web module
- webModule, err := web.New(processor)
- if err != nil {
- return fmt.Errorf("error creating web module: %s", err)
- }
+ webModule := web.New(processor)
// build client api modules
authModule := auth.New(dbService, idp, processor)