summaryrefslogtreecommitdiffstats
path: root/src/com/android
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android')
-rw-r--r--src/com/android/contacts/incall/InCallMetricsHelper.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/com/android/contacts/incall/InCallMetricsHelper.java b/src/com/android/contacts/incall/InCallMetricsHelper.java
index edab9a8f2..cd9281b88 100644
--- a/src/com/android/contacts/incall/InCallMetricsHelper.java
+++ b/src/com/android/contacts/incall/InCallMetricsHelper.java
@@ -571,7 +571,7 @@ public class InCallMetricsHelper {
RawContacts._ID + "=?",
new String[]{rawId}, null)) {
if (cursor != null) {
- while (cursor.moveToFirst()) {
+ while (cursor.moveToNext()) {
String accountType = cursor.getString(0); // RawContacts.ACCOUNT_TYPE
if (pluginMap.containsKey(accountType)) {
providerSet.add(pluginMap.get(accountType));