mirror of
https://github.com/oxen-io/session-android.git
synced 2024-11-24 02:25:19 +00:00
Remove unnecessary start of KeyCachingService.
This commit is contained in:
parent
89f97f57cb
commit
5219d79e27
@ -96,7 +96,7 @@ public class MmsDownloadJob extends MasterSecretJob {
|
|||||||
|
|
||||||
@Override
|
@Override
|
||||||
public void onAdded() {
|
public void onAdded() {
|
||||||
if (automatic && KeyCachingService.getMasterSecret(context) == null) {
|
if (automatic && KeyCachingService.isLocked(context)) {
|
||||||
DatabaseFactory.getMmsDatabase(context).markIncomingNotificationReceived(threadId);
|
DatabaseFactory.getMmsDatabase(context).markIncomingNotificationReceived(threadId);
|
||||||
MessageNotifier.updateNotification(context);
|
MessageNotifier.updateNotification(context);
|
||||||
}
|
}
|
||||||
|
@ -89,12 +89,7 @@ public class KeyCachingService extends Service {
|
|||||||
public static synchronized @Nullable MasterSecret getMasterSecret(Context context) {
|
public static synchronized @Nullable MasterSecret getMasterSecret(Context context) {
|
||||||
if (masterSecret == null && (TextSecurePreferences.isPasswordDisabled(context) && !TextSecurePreferences.isScreenLockEnabled(context))) {
|
if (masterSecret == null && (TextSecurePreferences.isPasswordDisabled(context) && !TextSecurePreferences.isScreenLockEnabled(context))) {
|
||||||
try {
|
try {
|
||||||
MasterSecret masterSecret = MasterSecretUtil.getMasterSecret(context, MasterSecretUtil.UNENCRYPTED_PASSPHRASE);
|
return MasterSecretUtil.getMasterSecret(context, MasterSecretUtil.UNENCRYPTED_PASSPHRASE);
|
||||||
Intent intent = new Intent(context, KeyCachingService.class);
|
|
||||||
|
|
||||||
context.startService(intent);
|
|
||||||
|
|
||||||
return masterSecret;
|
|
||||||
} catch (InvalidPassphraseException e) {
|
} catch (InvalidPassphraseException e) {
|
||||||
Log.w("KeyCachingService", e);
|
Log.w("KeyCachingService", e);
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user