Skip to content

Commit

Permalink
use _ for mapstructure (#990)
Browse files Browse the repository at this point in the history
to align it with the other config uptions. no changelog needed as the original PR has a changelog.
  • Loading branch information
butonic authored Jul 22, 2020
1 parent 1e57c49 commit 6dea793
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/http/services/owncloud/ocs/data/capabilities.go
Original file line number Diff line number Diff line change
Expand Up @@ -63,7 +63,7 @@ type CapabilitiesCore struct {
PollInterval int `json:"pollinterval" xml:"pollinterval" mapstructure:"poll_interval"`
WebdavRoot string `json:"webdav-root,omitempty" xml:"webdav-root,omitempty" mapstructure:"webdav_root"`
Status *Status `json:"status" xml:"status"`
SupportURLSigning ocsBool `json:"support-url-signing" xml:"support-url-signing" mapstructure:"support-url-signing"`
SupportURLSigning ocsBool `json:"support-url-signing" xml:"support-url-signing" mapstructure:"support_url_signing"`
}

// Status holds basic status information
Expand Down

0 comments on commit 6dea793

Please sign in to comment.