Skip to content

Commit 010d8f3

Browse files
[feat]
1. 캡쳐 방지 여부 기본값 true로 변경
1 parent 9893c62 commit 010d8f3

File tree

1 file changed

+1
-1
lines changed
  • app/src/main/java/ch/lock/mobile/android/deviceinfo/data/local/datastore/setting

1 file changed

+1
-1
lines changed

app/src/main/java/ch/lock/mobile/android/deviceinfo/data/local/datastore/setting/SettingDataStore.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,7 @@ class SettingPrefRepository(
5858
val isUseHyphen: Boolean = preferences[PrefKeys.IS_USE_HYPHEN] ?: false
5959

6060
// 화면 캡쳐 차단 여부
61-
val isCaptureBlock: Boolean = preferences[PrefKeys.IS_CAPTURE_BLOCK] ?: false
61+
val isCaptureBlock: Boolean = preferences[PrefKeys.IS_CAPTURE_BLOCK] ?: true
6262

6363
return SettingPref(
6464
isUseHyphen = isUseHyphen,

0 commit comments

Comments
 (0)