summaryrefslogtreecommitdiffhomepage
path: root/internal/app
diff options
context:
space:
mode:
Diffstat (limited to 'internal/app')
-rw-r--r--internal/app/app.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/internal/app/app.go b/internal/app/app.go
index 748fdaa7f..8f4f5e098 100644
--- a/internal/app/app.go
+++ b/internal/app/app.go
@@ -39,7 +39,7 @@ func New(ctx context.Context, conn *sql.DB) (*App, error) {
q := db.New(conn)
sessions := session.NewService(q)
messages := message.NewService(q)
- files := history.NewService(q)
+ files := history.NewService(q, conn)
app := &App{
Sessions: sessions,