i'm dumber than a piece of wood

This commit is contained in:
cupcakearmy 2021-06-17 00:21:55 +02:00
parent 893c0fcc5c
commit dc03c1b1ce
No known key found for this signature in database
GPG Key ID: D28129AE5654D9D9
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@ export default class Banner {
static shouldShow(): boolean {
const [paused, interval] = Settings.getStatus()
if (paused || interval > 1000) return false
if (InputDevicesStatus.areCameraOrMicrophoneActive()) return true
if (InputDevicesStatus.areCameraOrMicrophoneActive()) return false
return true
}