Update config.go

This commit is contained in:
Amy Blais 2026-04-29 14:54:48 +03:00 committed by GitHub
parent a31096a395
commit f71527f0b1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -1218,7 +1218,6 @@ type ExperimentalSettings struct {
UsersStatusAndProfileFetchingPollIntervalMilliseconds *int64 `access:"experimental_features"`
YoutubeReferrerPolicy *bool `access:"experimental_features"`
ExperimentalChannelCategorySorting *bool `access:"experimental_features"`
EnableWatermark *bool `access:"experimental_features"`
}
func (s *ExperimentalSettings) SetDefaults() {
@ -1270,9 +1269,6 @@ func (s *ExperimentalSettings) SetDefaults() {
s.ExperimentalChannelCategorySorting = NewPointer(false)
}
if s.EnableWatermark == nil {
s.EnableWatermark = NewPointer(false)
}
}
type AnalyticsSettings struct {