Преглед на файлове

Search: only parse search if search event is there

Signed-off-by: tobiasKaminsky <tobias@kaminsky.me>
tobiasKaminsky преди 5 години
родител
ревизия
54134c43b2
променени са 1 файла, в които са добавени 22 реда и са изтрити 20 реда
  1. 22 20
      src/main/java/com/owncloud/android/ui/activity/FileDisplayActivity.java

+ 22 - 20
src/main/java/com/owncloud/android/ui/activity/FileDisplayActivity.java

@@ -523,26 +523,28 @@ public class FileDisplayActivity extends FileActivity
                 setIntent(intent);
 
                 SearchEvent searchEvent = Parcels.unwrap(intent.getParcelableExtra(OCFileListFragment.SEARCH_EVENT));
-                if (SearchRemoteOperation.SearchType.PHOTO_SEARCH.equals(searchEvent.searchType)) {
-                    Log_OC.d(this, "Switch to photo search fragment");
-
-                    PhotoFragment photoFragment = new PhotoFragment(true);
-                    Bundle bundle = new Bundle();
-                    bundle.putParcelable(OCFileListFragment.SEARCH_EVENT, Parcels.wrap(searchEvent));
-                    photoFragment.setArguments(bundle);
-                    FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
-                    transaction.replace(R.id.left_fragment_container, photoFragment, TAG_LIST_OF_FILES);
-                    transaction.commit();
-                } else {
-                    Log_OC.d(this, "Switch to oc file search fragment");
-
-                    OCFileListFragment photoFragment = new OCFileListFragment();
-                    Bundle bundle = new Bundle();
-                    bundle.putParcelable(OCFileListFragment.SEARCH_EVENT, Parcels.wrap(searchEvent));
-                    photoFragment.setArguments(bundle);
-                    FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
-                    transaction.replace(R.id.left_fragment_container, photoFragment, TAG_LIST_OF_FILES);
-                    transaction.commit();
+                if (searchEvent != null) {
+                    if (SearchRemoteOperation.SearchType.PHOTO_SEARCH.equals(searchEvent.searchType)) {
+                        Log_OC.d(this, "Switch to photo search fragment");
+
+                        PhotoFragment photoFragment = new PhotoFragment(true);
+                        Bundle bundle = new Bundle();
+                        bundle.putParcelable(OCFileListFragment.SEARCH_EVENT, Parcels.wrap(searchEvent));
+                        photoFragment.setArguments(bundle);
+                        FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
+                        transaction.replace(R.id.left_fragment_container, photoFragment, TAG_LIST_OF_FILES);
+                        transaction.commit();
+                    } else {
+                        Log_OC.d(this, "Switch to oc file search fragment");
+
+                        OCFileListFragment photoFragment = new OCFileListFragment();
+                        Bundle bundle = new Bundle();
+                        bundle.putParcelable(OCFileListFragment.SEARCH_EVENT, Parcels.wrap(searchEvent));
+                        photoFragment.setArguments(bundle);
+                        FragmentTransaction transaction = getSupportFragmentManager().beginTransaction();
+                        transaction.replace(R.id.left_fragment_container, photoFragment, TAG_LIST_OF_FILES);
+                        transaction.commit();
+                    }
                 }
             } else if (UsersAndGroupsSearchProvider.ACTION_SHARE_WITH.equals(intent.getAction())) {
                 Uri data = intent.getData();