Skip to content

Commit 1e5f2bd

Browse files
authored
Merge pull request #4574 from owncloud/fix/spaces_content_not_shown_from_third_party_apps
[FIX] Content in Spaces not shown from 3rd party apps
2 parents 8eecac9 + a9c38e8 commit 1e5f2bd

File tree

3 files changed

+18
-1
lines changed

3 files changed

+18
-1
lines changed

CHANGELOG.md

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -36,13 +36,22 @@ ownCloud admins and users.
3636

3737
## Summary
3838

39+
* Bugfix - Content in Spaces not shown from third-party apps: [#4522](https://github.com/owncloud/android/issues/4522)
3940
* Bugfix - Add bottom margin for used quota in account dialog: [#4566](https://github.com/owncloud/android/issues/4566)
4041
* Change - Bump target SDK to 35: [#4529](https://github.com/owncloud/android/issues/4529)
4142
* Change - Replace dav4android location: [#4536](https://github.com/owncloud/android/issues/4536)
4243
* Enhancement - Accessibility reports in 4.5.1: [#4568](https://github.com/owncloud/android/issues/4568)
4344

4445
## Details
4546

47+
* Bugfix - Content in Spaces not shown from third-party apps: [#4522](https://github.com/owncloud/android/issues/4522)
48+
49+
The root of the spaces has been synchronized before displaying the file list
50+
when a file is shared from a third-party app.
51+
52+
https://github.com/owncloud/android/issues/4522
53+
https://github.com/owncloud/android/pull/4574
54+
4655
* Bugfix - Add bottom margin for used quota in account dialog: [#4566](https://github.com/owncloud/android/issues/4566)
4756

4857
Added bottom margin to the container holding used quota view when multi account

changelog/unreleased/4574

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,7 @@
1+
Bugfix: Content in Spaces not shown from third-party apps
2+
3+
The root of the spaces has been synchronized before displaying
4+
the file list when a file is shared from a third-party app.
5+
6+
https://github.com/owncloud/android/issues/4522
7+
https://github.com/owncloud/android/pull/4574

owncloudApp/src/main/java/com/owncloud/android/ui/activity/ReceiveExternalFilesActivity.java

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@
1313
* @author Jorge Aguado Recio
1414
*
1515
* Copyright (C) 2012 Bartek Przybylski
16-
* Copyright (C) 2024 ownCloud GmbH.
16+
* Copyright (C) 2025 ownCloud GmbH.
1717
* <p>
1818
* This program is free software: you can redistribute it and/or modify
1919
* it under the terms of the GNU General Public License version 2,
@@ -250,6 +250,7 @@ private void subscribeToViewModels() {
250250
OCFile rootSpaceFolder = bundle.getParcelable(SpacesListFragment.BUNDLE_KEY_CLICK_SPACE);
251251
mFile = rootSpaceFolder;
252252
currentSpaceId = mFile.getSpaceId();
253+
startSyncFolderOperation(mFile);
253254
showListOfFiles();
254255
updateDirectoryList();
255256
showRetainerFragment();

0 commit comments

Comments
 (0)