File tree Expand file tree Collapse file tree 3 files changed +18
-1
lines changed
owncloudApp/src/main/java/com/owncloud/android/ui/activity Expand file tree Collapse file tree 3 files changed +18
-1
lines changed Original file line number Diff line number Diff 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
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 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 ();
You can’t perform that action at this time.
0 commit comments