commit | c340ba99a03178987c15789cbca0994190c15fd6 | [log] [tgz] |
---|---|---|
author | Chiao Cheng <chiaocheng@google.com> | Fri Aug 30 13:04:46 2013 -0700 |
committer | Chiao Cheng <chiaocheng@google.com> | Fri Aug 30 13:04:46 2013 -0700 |
tree | e3962ac08543ced90e78cb03620b77193c622d0c | |
parent | 8fd0ec73400aed9ad5e46d46befb20b2b1008338 [diff] |
Fix inproper queue. Updates were being queued into the incoming queue by mistake. Change-Id: If63527d626abf7206aff41a4deb598ade9f6f136
diff --git a/src/com/android/phone/CallHandlerServiceProxy.java b/src/com/android/phone/CallHandlerServiceProxy.java index 6fdf80a..a85f9da 100644 --- a/src/com/android/phone/CallHandlerServiceProxy.java +++ b/src/com/android/phone/CallHandlerServiceProxy.java
@@ -329,7 +329,7 @@ for (Call call : calls) { copy.add(new Call(call)); } - getQueue().add(new QueueParams(QueueParams.METHOD_INCOMING, copy)); + getQueue().add(new QueueParams(QueueParams.METHOD_UPDATE, copy)); } private void processQueue() {