diff --git a/src/com/android/settings/InstrumentedPreferenceFragment.java b/src/com/android/settings/InstrumentedPreferenceFragment.java index ee2c629ff95..1b3d5cd5596 100644 --- a/src/com/android/settings/InstrumentedPreferenceFragment.java +++ b/src/com/android/settings/InstrumentedPreferenceFragment.java @@ -54,7 +54,7 @@ public abstract class InstrumentedPreferenceFragment extends PreferenceFragment if (provider.getSurveyExpirationDate(activity, id) <= -1) { // register the receiver to show the survey on completion. mReceiver = provider.createAndRegisterReceiver(activity); - provider.downloadSurvey(activity, id, "fakeData"); + provider.downloadSurvey(activity, id, null /* data */); } else { provider.showSurveyIfAvailable(activity, id); }