Skip to content

Commit

Permalink
Merge pull request #12406 from nextcloud/fix/externalfiles-intent
Browse files Browse the repository at this point in the history
Fix ReceiveExternalFilesActivity intent
  • Loading branch information
tobiasKaminsky committed Mar 15, 2024
2 parents 4c3069c + 995600e commit 4e2a472
Showing 1 changed file with 7 additions and 7 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -174,8 +174,6 @@ public class ReceiveExternalFilesActivity extends FileActivity

@Override
protected void onCreate(Bundle savedInstanceState) {
prepareStreamsToUpload();

if (savedInstanceState != null) {
String parentPath = savedInstanceState.getString(KEY_PARENTS);

Expand All @@ -191,6 +189,8 @@ protected void onCreate(Bundle savedInstanceState) {
binding = ReceiveExternalFilesBinding.inflate(getLayoutInflater());
setContentView(binding.getRoot());

prepareStreamsToUpload();

// Listen for sync messages
IntentFilter syncIntentFilter = new IntentFilter(RefreshFolderOperation.
EVENT_SINGLE_FOLDER_CONTENTS_SYNCED);
Expand Down Expand Up @@ -850,16 +850,16 @@ private String generatePath(Stack<String> dirs) {
private void prepareStreamsToUpload() {
Intent intent = getIntent();

if (Intent.ACTION_SEND.equals(intent.getAction())) {
if (intent.hasExtra(Intent.EXTRA_STREAM) && Intent.ACTION_SEND.equals(intent.getAction())) {
mStreamsToUpload = new ArrayList<>();
mStreamsToUpload.add(IntentExtensionsKt.getParcelableArgument(intent, Intent.EXTRA_STREAM, Parcelable.class));
} else if (Intent.ACTION_SEND_MULTIPLE.equals(intent.getAction())) {
} else if (intent.hasExtra(Intent.EXTRA_STREAM) && Intent.ACTION_SEND_MULTIPLE.equals(intent.getAction())) {
mStreamsToUpload = intent.getParcelableArrayListExtra(Intent.EXTRA_STREAM);
}

if (mStreamsToUpload == null || mStreamsToUpload.isEmpty() || mStreamsToUpload.get(0) == null) {
} else if (intent.hasExtra(Intent.EXTRA_TEXT) && Intent.ACTION_SEND.equals(intent.getAction())) {
mStreamsToUpload = null;
saveTextsFromIntent(intent);
} else {
showErrorDialog(R.string.uploader_error_message_no_file_to_upload, R.string.uploader_error_title_file_cannot_be_uploaded);
}
}

Expand Down

0 comments on commit 4e2a472

Please sign in to comment.