From 445881faf8cd212ae1d928722af5744daf896bdc Mon Sep 17 00:00:00 2001 From: Hugo Gonzalez Labrador Date: Wed, 8 Sep 2021 08:01:15 +0200 Subject: [PATCH] fix typo to make hugo happy --- pkg/app/provider/wopi/wopi.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pkg/app/provider/wopi/wopi.go b/pkg/app/provider/wopi/wopi.go index 2c8a2b9c3a5..0cf3aa734e1 100644 --- a/pkg/app/provider/wopi/wopi.go +++ b/pkg/app/provider/wopi/wopi.go @@ -63,7 +63,7 @@ type config struct { AppIntURL string `mapstructure:"app_int_url" docs:";The internal app URL in case of dockerized deployments. Defaults to AppURL"` AppAPIKey string `mapstructure:"app_api_key" docs:";The API key used by the app, if applicable."` JWTSecret string `mapstructure:"jwt_secret" docs:";The JWT secret to be used to retrieve the token TTL."` - AppDesktopOnly bool `mapstructure:"app_desktop_only" docs:";Whether the app can be opened only on desktop."` + AppDesktopOnly bool `mapstructure:"app_desktop_only" docs:";Specifies if the app can be opened only on desktop."` InsecureConnections bool `mapstructure:"insecure_connections"` }