diff options
| author | 2019-06-06 11:17:20 -0400 | |
|---|---|---|
| committer | 2019-06-06 16:49:58 +0000 | |
| commit | 837ed9ac7a995dfb8e35bf13daca4e7f5126b5b4 (patch) | |
| tree | 0e42ade250abeb73f04b94e6f3a9c7466750ef43 | |
| parent | 730b22c2296ba0abb44e28458eec01f89eb87ae8 (diff) | |
Default silent notifs on lockscreen to on
Test: manual
Bug: 134613164
Change-Id: I4873d7120959c25511ba8c51b4de9bf81df06b72
| -rw-r--r-- | packages/SystemUI/src/com/android/systemui/statusbar/NotificationLockscreenUserManagerImpl.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/SystemUI/src/com/android/systemui/statusbar/NotificationLockscreenUserManagerImpl.java b/packages/SystemUI/src/com/android/systemui/statusbar/NotificationLockscreenUserManagerImpl.java index 905a8e68f3d1..4ea1ed5b9451 100644 --- a/packages/SystemUI/src/com/android/systemui/statusbar/NotificationLockscreenUserManagerImpl.java +++ b/packages/SystemUI/src/com/android/systemui/statusbar/NotificationLockscreenUserManagerImpl.java @@ -320,7 +320,7 @@ public class NotificationLockscreenUserManagerImpl implements private boolean hideSilentNotificationsOnLockscreen() { return Settings.Secure.getInt(mContext.getContentResolver(), - Settings.Secure.LOCK_SCREEN_SHOW_SILENT_NOTIFICATIONS, 0) == 0; + Settings.Secure.LOCK_SCREEN_SHOW_SILENT_NOTIFICATIONS, 1) == 0; } private void setShowLockscreenNotifications(boolean show) { |