From d9ad320bbf2ebeb70db26357fb78476f8a3ab61f Mon Sep 17 00:00:00 2001 From: Eraxyso <130852025+Eraxyso@users.noreply.github.com> Date: Thu, 4 Jul 2024 04:58:57 +0000 Subject: [PATCH] style: remove extra parenthesis --- service/channel/manager_impl.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/service/channel/manager_impl.go b/service/channel/manager_impl.go index e468d6e22..765ec2e62 100644 --- a/service/channel/manager_impl.go +++ b/service/channel/manager_impl.go @@ -66,7 +66,7 @@ func (m *managerImpl) GetChannel(id uuid.UUID) (*model.Channel, error) { return ch, nil } -func (m *managerImpl) GetChannelPathFromID(id uuid.UUID) (string) { +func (m *managerImpl) GetChannelPathFromID(id uuid.UUID) string { return m.T.getChannelPath(id) }