Skip to content

Commit

Permalink
Changelog and small improvement
Browse files Browse the repository at this point in the history
  • Loading branch information
bmarty committed Sep 30, 2020
1 parent f0272fd commit 881ebff
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CHANGES.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ Changes in Element 1.0.9 (2020-XX-XX)
===================================================

Features ✨:
-
- Hide encrypted history (before user is invited). Can be shown if wanted in developer settings

Improvements 🙌:
- Wording differentiation for direct rooms (#2176)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ class VectorPreferences @Inject constructor(private val context: Context) {
}

fun labShowCompleteHistoryInEncryptedRoom(): Boolean {
return defaultPrefs.getBoolean(SETTINGS_LABS_SHOW_COMPLETE_HISTORY_IN_ENCRYPTED_ROOM, false)
return developerMode() && defaultPrefs.getBoolean(SETTINGS_LABS_SHOW_COMPLETE_HISTORY_IN_ENCRYPTED_ROOM, false)
}

fun labAllowedExtendedLogging(): Boolean {
Expand Down

0 comments on commit 881ebff

Please sign in to comment.