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) {
|
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);
|
||||||
|
// ========
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
@ -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);
|
||||||
|
// ========
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user