From d6811e4ac145751598ceeccf04dfbc4dd9e48fe2 Mon Sep 17 00:00:00 2001 From: Kristian Borgwarth <10348902@pm.me> Date: Fri, 3 Apr 2026 23:56:37 +0200 Subject: [PATCH] fix(note_repo): pass context --- core/handlers/create_note_handler.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/handlers/create_note_handler.go b/core/handlers/create_note_handler.go index cb78af9..608edaa 100644 --- a/core/handlers/create_note_handler.go +++ b/core/handlers/create_note_handler.go @@ -68,7 +68,7 @@ func (h *CreateNoteHandler) Handle(ctx context.Context, uow *repositories.UnitOf return nil, err } - if err = tagRepo.UpsertNoteTags(note.ID(), utils.Select(tagModels, func(t *models.Tag) string { return t.ID() })); err != nil { + if err = tagRepo.UpsertNoteTags(ctx, note.ID(), utils.Select(tagModels, func(t *models.Tag) string { return t.ID() })); err != nil { return nil, err }