diff options
Diffstat (limited to 'hst/config.go')
| -rw-r--r-- | hst/config.go | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/hst/config.go b/hst/config.go index 23c21ccf..5032471b 100644 --- a/hst/config.go +++ b/hst/config.go @@ -109,11 +109,9 @@ func (config *Config) Validate() error { } } - // EPulse without EPipeWire is insecure - if et := config.Enablements.Unwrap(); !config.DirectPulse && - et&EPipeWire == 0 && et&EPulse != 0 { + if et := config.Enablements.Unwrap(); !config.DirectPulse && et&EPulse != 0 { return &AppError{Step: "validate configuration", Err: ErrInsecure, - Msg: "enablement PulseAudio requires PipeWire, which is not set"} + Msg: "enablement PulseAudio is insecure and no longer supported"} } return nil |
