summaryrefslogtreecommitdiff
path: root/src/com/android/im/app/LandingPage.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/android/im/app/LandingPage.java')
-rw-r--r--src/com/android/im/app/LandingPage.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/android/im/app/LandingPage.java b/src/com/android/im/app/LandingPage.java
index cdbea1e..8020cd0 100644
--- a/src/com/android/im/app/LandingPage.java
+++ b/src/com/android/im/app/LandingPage.java
@@ -102,8 +102,8 @@ public class LandingPage extends ListActivity implements View.OnCreateContextMen
mProviderCursor = managedQuery(Im.Provider.CONTENT_URI_WITH_ACCOUNT,
PROVIDER_PROJECTION,
- null /* selection */,
- null /* selection args */,
+ Im.Provider.CATEGORY + "=?" /* selection */,
+ new String[]{ ImApp.IMPS_CATEGORY } /* selection args */,
Im.Provider.DEFAULT_SORT_ORDER);
mAdapter = new ProviderAdapter(this, mProviderCursor);
setListAdapter(mAdapter);