Disable block & ignore filter during recording

This commit is contained in:
relikd
2020-08-29 18:36:41 +02:00
parent 8fcb5ad874
commit 7dbf21d564
5 changed files with 36 additions and 5 deletions

View File

@@ -157,4 +157,8 @@ struct VPNAppMessage {
static func notificationSettingsChanged() -> Self {
.init("notify-prefs-change:1")
}
/// Triggered whenever user taps on the start/stop recording button
static func isRecording(_ state: Bool) -> Self {
.init("recording-now:\(state ? 1 : 0)")
}
}