2
0
mirror of https://github.com/fork-maintainers/iceraven-browser synced 2024-11-19 09:25:34 +00:00

[fenix] For https://github.com/mozilla-mobile/fenix/issues/15503 - Change recently closed max to 10

This commit is contained in:
ekager 2020-09-28 10:19:05 -07:00 committed by Gabriel Luong
parent 98f8f3b2ca
commit 8caf149ab7

View File

@ -377,6 +377,6 @@ class Core(
private const val KEY_STRENGTH = 256 private const val KEY_STRENGTH = 256
private const val KEY_STORAGE_NAME = "core_prefs" private const val KEY_STORAGE_NAME = "core_prefs"
private const val PASSWORDS_KEY = "passwords" private const val PASSWORDS_KEY = "passwords"
private const val RECENTLY_CLOSED_MAX = 5 private const val RECENTLY_CLOSED_MAX = 10
} }
} }