From ad0690369f39dab3683ac5ef7664bd765fa1cb18 Mon Sep 17 00:00:00 2001 From: kolaente Date: Wed, 7 Jun 2023 21:00:12 +0200 Subject: [PATCH] fix: lint --- pkg/models/listeners.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/models/listeners.go b/pkg/models/listeners.go index 373f3054d44..738485ea78d 100644 --- a/pkg/models/listeners.go +++ b/pkg/models/listeners.go @@ -300,7 +300,7 @@ func (s *SendTaskDeletedNotification) Handle(msg *message.Message) (err error) { var subscribers []*Subscription subscribers, err = getSubscribersForEntity(sess, SubscriptionEntityTask, event.Task.ID) - // If the task does not exist and no one has explicitely subscribed to it, we won't find any subscriptions for it. + // If the task does not exist and no one has explicitly subscribed to it, we won't find any subscriptions for it. // Hence, we need to check for subscriptions to the parent project manually. if err != nil && (IsErrTaskDoesNotExist(err) || IsErrProjectDoesNotExist(err)) { subscribers, err = getSubscribersForEntity(sess, SubscriptionEntityProject, event.Task.ProjectID)