Skip to content

Commit

Permalink
Fix PR comment
Browse files Browse the repository at this point in the history
  • Loading branch information
yostyle committed Oct 19, 2023
1 parent 85a56c0 commit d0d7585
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -994,7 +994,7 @@ class VectorPreferences @Inject constructor(
*/
fun useFlagSecure(): Boolean {
// Tchap: Screenshot is allowed for Gplay Pre-prod and Dev versions only.
return !(BuildConfig.FLAVOR_store == "gplay" && BuildConfig.FLAVOR_target != "tchap")
return BuildConfig.FLAVOR_store != "gplay" || BuildConfig.FLAVOR_target == "tchap"
}

/** Whether the keyboard should disable personalized learning. */
Expand Down

0 comments on commit d0d7585

Please sign in to comment.