Updating CallLogAsync.addCalls method call to prevent errors
A more complete change to the code will be done later.
Bug: 15473965
Change-Id: I5b0e5cd396e73b0869bdc1a9292128fa86d7438f
diff --git a/src/com/android/phone/CallLogger.java b/src/com/android/phone/CallLogger.java
index 8322101..fcc55ce 100644
--- a/src/com/android/phone/CallLogger.java
+++ b/src/com/android/phone/CallLogger.java
@@ -130,7 +130,7 @@
}
CallLogAsync.AddCallArgs args = new CallLogAsync.AddCallArgs(mApplication, ci, number,
- presentation, callType, start, duration);
+ presentation, callType, null, start, duration);
mCallLog.addCall(args);
}
}