Remove Universal Expire Timer flag and fix bug with SMS.

This commit is contained in:
Cody Henthorne
2021-06-08 11:20:06 -04:00
committed by GitHub
parent 5e3bbb0e64
commit b6c653ff77
4 changed files with 14 additions and 26 deletions

View File

@@ -381,11 +381,7 @@ public final class SettingsValues extends SignalStoreValues {
}
public int getUniversalExpireTimer() {
if (FeatureFlags.defaultMessageTimer()) {
return getInteger(UNIVERSAL_EXPIRE_TIMER, 0);
} else {
return 0;
}
return getInteger(UNIVERSAL_EXPIRE_TIMER, 0);
}
private @Nullable Uri getUri(@NonNull String key) {