- settings safebrowsing_enabled and safesearch_enabled were incorrect (reversed)

This commit is contained in:
Simon Zolin
2020-01-09 15:01:54 +03:00
parent 94d86eee10
commit 4386e8ddde
2 changed files with 4 additions and 4 deletions

View File

@@ -13,8 +13,8 @@ type clientJSON struct {
UseGlobalSettings bool `json:"use_global_settings"`
FilteringEnabled bool `json:"filtering_enabled"`
ParentalEnabled bool `json:"parental_enabled"`
SafeSearchEnabled bool `json:"safebrowsing_enabled"`
SafeBrowsingEnabled bool `json:"safesearch_enabled"`
SafeSearchEnabled bool `json:"safesearch_enabled"`
SafeBrowsingEnabled bool `json:"safebrowsing_enabled"`
WhoisInfo map[string]interface{} `json:"whois_info"`