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

Commit 6445e684 authored by Govinda Wasserman's avatar Govinda Wasserman
Browse files

Fixes timestamp passed to the Assistant

Test: Tested locally
BUG:134204043
Change-Id: Ib7d94c3d548ede8cad4f9458b3cf361662ff239d
FIX:134204043
parent 9369357e
Loading
Loading
Loading
Loading
+1 −1
Original line number Diff line number Diff line
@@ -258,7 +258,7 @@ public class AssistManager implements ConfigurationChangedReceiver {
        }
        int phoneState = mPhoneStateMonitor.getPhoneState();
        args.putInt(INVOCATION_PHONE_STATE_KEY, phoneState);
        args.putLong(INVOCATION_TIME_MS_KEY, SystemClock.uptimeMillis());
        args.putLong(INVOCATION_TIME_MS_KEY, SystemClock.elapsedRealtime());
        logStartAssist(invocationType, phoneState);
        startAssistInternal(args, assistComponent, isService);
    }