Disable reminders

This commit is contained in:
Niels Andriesse 2019-06-06 09:51:54 +10:00
parent 7d24ab12a2
commit ed025fcc4b
2 changed files with 15 additions and 7 deletions

View File

@ -39,11 +39,15 @@ public class DefaultSmsReminder extends Reminder {
} }
public static boolean isEligible(Context context) { public static boolean isEligible(Context context) {
final boolean isDefault = Util.isDefaultSmsProvider(context); return false;
if (isDefault) { // Loki - Original code
TextSecurePreferences.setPromptedDefaultSmsProvider(context, false); // ========
} // final boolean isDefault = Util.isDefaultSmsProvider(context);
// if (isDefault) {
return !isDefault && !TextSecurePreferences.hasPromptedDefaultSmsProvider(context); // TextSecurePreferences.setPromptedDefaultSmsProvider(context, false);
// }
//
// return !isDefault && !TextSecurePreferences.hasPromptedDefaultSmsProvider(context);
// ========
} }
} }

View File

@ -29,6 +29,10 @@ public class PushRegistrationReminder extends Reminder {
} }
public static boolean isEligible(Context context) { public static boolean isEligible(Context context) {
return !TextSecurePreferences.isPushRegistered(context); return false;
// Loki - Original code
// ========
// return !TextSecurePreferences.isPushRegistered(context);
// ========
} }
} }