Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 093d1a5a authored by Joe Onorato's avatar Joe Onorato
Browse files

Revert "Have the notification service only have notifications diabled"

This reverts commit eb176588.
parent eb176588
Loading
Loading
Loading
Loading
+1 −10
Original line number Original line Diff line number Diff line
@@ -90,7 +90,7 @@ class NotificationManagerService extends INotificationManager.Stub
    private NotificationRecord mSoundNotification;
    private NotificationRecord mSoundNotification;
    private AsyncPlayer mSound;
    private AsyncPlayer mSound;
    private boolean mSystemReady;
    private boolean mSystemReady;
    private int mDisabledNotifications;
    private int mDisabledNotifications = StatusBarManager.DISABLE_NOTIFICATION_ALERTS;


    private NotificationRecord mVibrateNotification;
    private NotificationRecord mVibrateNotification;
    private Vibrator mVibrator = new Vibrator();
    private Vibrator mVibrator = new Vibrator();
@@ -368,15 +368,6 @@ class NotificationManagerService extends INotificationManager.Stub
        mStatusBarService = statusBar;
        mStatusBarService = statusBar;
        statusBar.setNotificationCallbacks(mNotificationCallbacks);
        statusBar.setNotificationCallbacks(mNotificationCallbacks);


        // Don't start allowing notifications until the setup wizard has run once.
        // After that, including subsequent boots, init with notifications turned on.
        // This works on the first boot because the setup wizard will toggle this
        // flag at least once and we'll go back to 0 after that.
        if (0 != Settings.Secure.getInt(mContext.getContentResolver(),
                    Settings.Secure.DEVICE_PROVISIONED, 0)) {
            mDisabledNotifications = AudioManager.STREAM_NOTIFICATION;
        }

        // register for battery changed notifications
        // register for battery changed notifications
        IntentFilter filter = new IntentFilter();
        IntentFilter filter = new IntentFilter();
        filter.addAction(Intent.ACTION_BATTERY_CHANGED);
        filter.addAction(Intent.ACTION_BATTERY_CHANGED);