Skip to content
Snippets Groups Projects
Commit 95a8623c authored by Bolke de Bruin's avatar Bolke de Bruin
Browse files

Change remoteapplicationmode to default to false as that seems to be the case

parent f95ff94a
No related branches found
No related tags found
No related merge requests found
......@@ -86,7 +86,7 @@ type RdpSettings struct {
RemoteAppExpandWorkingDir bool `rdp:"remoteapplicationexpandworkingdir" default:"true"`
RemoteApplicationFile string `rdp:"remoteapplicationfile" default:"true"`
RemoteApplicationIcon string `rdp:"remoteapplicationicon"`
RemoteApplicationMode bool `rdp:"remoteapplicationmode" default:"true"`
RemoteApplicationMode bool `rdp:"remoteapplicationmode" default:"false"`
RemoteApplicationName string `rdp:"remoteapplicationname"`
RemoteApplicationProgram string `rdp:"remoteapplicationprogram"`
}
......@@ -114,6 +114,7 @@ func NewBuilderFromFile(filename string) (*Builder, error) {
return nil, err
}
t := koanf.UnmarshalConf{Tag: "rdp"}
if err := k.UnmarshalWithConf("", &c, t); err != nil {
return nil, err
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment