mirror of
https://github.com/Divested-Mobile/DivestOS-Build.git
synced 2024-10-01 01:35:54 -04:00
082bc48c32
https://review.lineageos.org/q/topic:P_asb_2022-05 https://review.lineageos.org/q/topic:P_asb_2022-06 https://review.lineageos.org/q/topic:P_asb_2022-07 https://review.lineageos.org/q/topic:P_asb_2022-08 https://review.lineageos.org/q/topic:P_asb_2022-09 https://review.lineageos.org/q/topic:P_asb_2022-10 https://review.lineageos.org/q/topic:P_asb_2022-11 https://review.lineageos.org/q/topic:P_asb_2022-12 https://review.lineageos.org/q/topic:P_asb_2023-01 https://review.lineageos.org/q/topic:P_asb_2023-02 https://review.lineageos.org/q/topic:P_asb_2023-03 https://review.lineageos.org/q/topic:P_asb_2023-04 https://review.lineageos.org/q/topic:P_asb_2023-05 https://review.lineageos.org/q/topic:P_asb_2023-06 https://review.lineageos.org/q/topic:P_asb_2023-07 accounted for via manifest change: https://review.lineageos.org/c/LineageOS/android_external_freetype/+/361250 https://review.lineageos.org/q/topic:P_asb_2023-08 accounted for via manifest change: https://review.lineageos.org/c/LineageOS/android_external_freetype/+/364606 accounted for via patches: https://review.lineageos.org/c/LineageOS/android_system_ca-certificates/+/365328 https://review.lineageos.org/q/topic:P_asb_2023-09 https://review.lineageos.org/q/topic:P_asb_2023-10 https://review.lineageos.org/q/topic:P_asb_2023-11 accounted for via patches: https://review.lineageos.org/c/LineageOS/android_system_ca-certificates/+/374916 https://review.lineageos.org/q/topic:P_asb_2023-12 https://review.lineageos.org/q/topic:P_asb_2024-01 https://review.lineageos.org/q/topic:P_asb_2024-02 https://review.lineageos.org/q/topic:P_asb_2024-03 https://review.lineageos.org/q/topic:P_asb_2024-04 Signed-off-by: Tavi <tavi@divested.dev>
56 lines
2.9 KiB
Diff
56 lines
2.9 KiB
Diff
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
From: Chandru S <chandruis@google.com>
|
|
Date: Tue, 16 May 2023 10:41:07 -0700
|
|
Subject: [PATCH] Use Settings.System.getIntForUser instead of getInt to make
|
|
sure user specific settings are used
|
|
|
|
Bug: 265431505
|
|
Test: atest KeyguardViewMediatorTest
|
|
(cherry picked from commit 625e009fc195ba5d658ca2d78ebb23d2770cc6c4)
|
|
(cherry picked from https://googleplex-android-review.googlesource.com/q/commit:ce6510deba06bcb72a0e468294b483fc4ac4be17)
|
|
Merged-In: I66a660c091c90a957a0fd1e144c013840db3f47e
|
|
Change-Id: I66a660c091c90a957a0fd1e144c013840db3f47e
|
|
---
|
|
.../systemui/keyguard/KeyguardViewMediator.java | 13 ++++++++-----
|
|
1 file changed, 8 insertions(+), 5 deletions(-)
|
|
|
|
diff --git a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java
|
|
index f0d389c15228..820c7eac715a 100644
|
|
--- a/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java
|
|
+++ b/packages/SystemUI/src/com/android/systemui/keyguard/KeyguardViewMediator.java
|
|
@@ -935,9 +935,9 @@ public class KeyguardViewMediator extends SystemUI {
|
|
final ContentResolver cr = mContext.getContentResolver();
|
|
|
|
// From SecuritySettings
|
|
- final long lockAfterTimeout = Settings.Secure.getInt(cr,
|
|
+ final long lockAfterTimeout = Settings.Secure.getIntForUser(cr,
|
|
Settings.Secure.LOCK_SCREEN_LOCK_AFTER_TIMEOUT,
|
|
- KEYGUARD_LOCK_AFTER_DELAY_DEFAULT);
|
|
+ KEYGUARD_LOCK_AFTER_DELAY_DEFAULT, userId);
|
|
|
|
// From DevicePolicyAdmin
|
|
final long policyTimeout = mLockPatternUtils.getDevicePolicyManager()
|
|
@@ -949,8 +949,8 @@ public class KeyguardViewMediator extends SystemUI {
|
|
timeout = lockAfterTimeout;
|
|
} else {
|
|
// From DisplaySettings
|
|
- long displayTimeout = Settings.System.getInt(cr, SCREEN_OFF_TIMEOUT,
|
|
- KEYGUARD_DISPLAY_TIMEOUT_DELAY_DEFAULT);
|
|
+ long displayTimeout = Settings.System.getIntForUser(cr, SCREEN_OFF_TIMEOUT,
|
|
+ KEYGUARD_DISPLAY_TIMEOUT_DELAY_DEFAULT, userId);
|
|
|
|
// policy in effect. Make sure we don't go beyond policy limit.
|
|
displayTimeout = Math.max(displayTimeout, 0); // ignore negative values
|
|
@@ -1792,7 +1792,10 @@ public class KeyguardViewMediator extends SystemUI {
|
|
private void playSound(int soundId) {
|
|
if (soundId == 0) return;
|
|
final ContentResolver cr = mContext.getContentResolver();
|
|
- if (Settings.System.getInt(cr, Settings.System.LOCKSCREEN_SOUNDS_ENABLED, 1) == 1) {
|
|
+ int lockscreenSoundsEnabled = Settings.System.getIntForUser(cr,
|
|
+ Settings.System.LOCKSCREEN_SOUNDS_ENABLED, 1,
|
|
+ KeyguardUpdateMonitor.getCurrentUser());
|
|
+ if (lockscreenSoundsEnabled == 1) {
|
|
|
|
mLockSounds.stop(mLockSoundStreamId);
|
|
// Init mAudioManager
|