Set internalUser=true for nightly builds.

This commit is contained in:
Greyson Parrelli
2024-04-10 14:54:35 -04:00
parent db4442939d
commit c1d29b5c39

View File

@@ -378,7 +378,7 @@ public final class FeatureFlags {
/** Internal testing extensions. */
public static boolean internalUser() {
return getBoolean(INTERNAL_USER, false) || Environment.IS_STAGING;
return getBoolean(INTERNAL_USER, false) || Environment.IS_NIGHTLY || Environment.IS_STAGING;
}
/** Whether or not to use the UUID in verification codes. */