From 1e8b5fae7084f38afa493520051a30ab09dc1d4a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Pablo=20Villaf=C3=A1=C3=B1ez?= Date: Tue, 5 Nov 2024 11:45:08 +0100 Subject: [PATCH] fix: add product name to the registration info --- services/collaboration/pkg/helpers/registration.go | 1 + 1 file changed, 1 insertion(+) diff --git a/services/collaboration/pkg/helpers/registration.go b/services/collaboration/pkg/helpers/registration.go index 0fa416bd4b..a6609fe20e 100644 --- a/services/collaboration/pkg/helpers/registration.go +++ b/services/collaboration/pkg/helpers/registration.go @@ -68,6 +68,7 @@ func RegisterAppProvider( Icon: cfg.App.Icon, Address: cfg.GRPC.Namespace + "." + cfg.Service.Name + "." + cfg.App.Name, MimeTypes: mimeTypes, + ProductName: cfg.App.Product, }, } gwc, err := gws.Next()