diff options
| author | 2020-06-18 09:37:09 -0400 | |
|---|---|---|
| committer | 2020-06-18 09:37:09 -0400 | |
| commit | 7dbaa071325da5d67afd7aec757d32baf234c3e3 (patch) | |
| tree | 29147766be3e3b180ecaea63043584776a8f7eae | |
| parent | ae64ae50de3354474b9f296b54630925089effe9 (diff) | |
Increase notification channel limit
Test: atest
Fixes: 159152542
Change-Id: I594970428edcc311d1520eef6d766ad7e88d2be5
| -rw-r--r-- | services/core/java/com/android/server/notification/PreferencesHelper.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/services/core/java/com/android/server/notification/PreferencesHelper.java b/services/core/java/com/android/server/notification/PreferencesHelper.java index afc75572ae4f..b047970183d4 100644 --- a/services/core/java/com/android/server/notification/PreferencesHelper.java +++ b/services/core/java/com/android/server/notification/PreferencesHelper.java @@ -90,7 +90,7 @@ public class PreferencesHelper implements RankingConfig { private static final String NON_BLOCKABLE_CHANNEL_DELIM = ":"; @VisibleForTesting - static final int NOTIFICATION_CHANNEL_COUNT_LIMIT = 5000; + static final int NOTIFICATION_CHANNEL_COUNT_LIMIT = 50000; private static final int NOTIFICATION_PREFERENCES_PULL_LIMIT = 1000; private static final int NOTIFICATION_CHANNEL_PULL_LIMIT = 2000; |