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() {