mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-28 04:25:18 +00:00
Disable reminders
This commit is contained in:
parent
7d24ab12a2
commit
ed025fcc4b
@ -39,11 +39,15 @@ public class DefaultSmsReminder extends Reminder {
|
||||
}
|
||||
|
||||
public static boolean isEligible(Context context) {
|
||||
final boolean isDefault = Util.isDefaultSmsProvider(context);
|
||||
if (isDefault) {
|
||||
TextSecurePreferences.setPromptedDefaultSmsProvider(context, false);
|
||||
}
|
||||
|
||||
return !isDefault && !TextSecurePreferences.hasPromptedDefaultSmsProvider(context);
|
||||
return false;
|
||||
// Loki - Original code
|
||||
// ========
|
||||
// final boolean isDefault = Util.isDefaultSmsProvider(context);
|
||||
// if (isDefault) {
|
||||
// TextSecurePreferences.setPromptedDefaultSmsProvider(context, false);
|
||||
// }
|
||||
//
|
||||
// return !isDefault && !TextSecurePreferences.hasPromptedDefaultSmsProvider(context);
|
||||
// ========
|
||||
}
|
||||
}
|
||||
|
@ -29,6 +29,10 @@ public class PushRegistrationReminder extends Reminder {
|
||||
}
|
||||
|
||||
public static boolean isEligible(Context context) {
|
||||
return !TextSecurePreferences.isPushRegistered(context);
|
||||
return false;
|
||||
// Loki - Original code
|
||||
// ========
|
||||
// return !TextSecurePreferences.isPushRegistered(context);
|
||||
// ========
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user