Add feature flag for self-destructing messages.

This commit is contained in:
akwizgran
2021-03-01 16:42:28 +00:00
committed by Torsten Grote
parent bf6be5c5a7
commit 693478e0a5
5 changed files with 13 additions and 0 deletions

View File

@@ -293,6 +293,11 @@ public class AppModule {
public boolean shouldEnableProfilePictures() {
return IS_DEBUG_BUILD;
}
@Override
public boolean shouldEnableDisappearingMessages() {
return IS_DEBUG_BUILD;
}
};
}
}