summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAnthony Lee <anthonylee@google.com>2014-12-03 18:36:40 +0000
committerAndroid Git Automerger <android-git-automerger@android.com>2014-12-03 18:36:40 +0000
commit34c4a427e03ecdfb64233d6fcfba29f15eeaf556 (patch)
treea614dd60c6e32574c550574e06adcd5a55f41d6e
parent8e05055f2dbbbe1f16a1c437ba97ee52df9aa339 (diff)
parentdf47edd9c77a0117c34dd73ef6ef4468dac221e8 (diff)
am df47edd9: NPE fix.
* commit 'df47edd9c77a0117c34dd73ef6ef4468dac221e8': NPE fix.
-rw-r--r--src/com/android/dialer/calllog/PhoneAccountUtils.java6
1 files changed, 4 insertions, 2 deletions
diff --git a/src/com/android/dialer/calllog/PhoneAccountUtils.java b/src/com/android/dialer/calllog/PhoneAccountUtils.java
index 3979a3e5e..adeec0f2b 100644
--- a/src/com/android/dialer/calllog/PhoneAccountUtils.java
+++ b/src/com/android/dialer/calllog/PhoneAccountUtils.java
@@ -18,7 +18,6 @@ package com.android.dialer.calllog;
import android.content.ComponentName;
import android.content.Context;
-import android.graphics.drawable.Drawable;
import android.telecom.PhoneAccount;
import android.telecom.PhoneAccountHandle;
import android.telecom.TelecomManager;
@@ -65,7 +64,10 @@ public class PhoneAccountUtils {
*/
public static String getAccountLabel(Context context, PhoneAccountHandle accountHandle) {
PhoneAccount account = getAccountOrNull(context, accountHandle);
- return account == null ? null : account.getLabel().toString();
+ if (account != null && account.getLabel() != null) {
+ return account.getLabel().toString();
+ }
+ return null;
}
/**