Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -36,13 +36,22 @@ ownCloud admins and users.

## Summary

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

## Details

* Bugfix - Content in Spaces not shown from third-party apps: [#4522](https://github.com/owncloud/android/issues/4522)

The root of the spaces has been synchronized before displaying the file list
when a file is shared from a third-party app.

https://github.com/owncloud/android/issues/4522
https://github.com/owncloud/android/pull/4574

* Bugfix - Add bottom margin for used quota in account dialog: [#4566](https://github.com/owncloud/android/issues/4566)

Added bottom margin to the container holding used quota view when multi account
Expand Down
7 changes: 7 additions & 0 deletions changelog/unreleased/4574
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
Bugfix: Content in Spaces not shown from third-party apps

The root of the spaces has been synchronized before displaying
the file list when a file is shared from a third-party app.

https://github.com/owncloud/android/issues/4522
https://github.com/owncloud/android/pull/4574
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
* @author Jorge Aguado Recio
*
* Copyright (C) 2012 Bartek Przybylski
* Copyright (C) 2024 ownCloud GmbH.
* Copyright (C) 2025 ownCloud GmbH.
* <p>
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU General Public License version 2,
Expand Down Expand Up @@ -250,6 +250,7 @@ private void subscribeToViewModels() {
OCFile rootSpaceFolder = bundle.getParcelable(SpacesListFragment.BUNDLE_KEY_CLICK_SPACE);
mFile = rootSpaceFolder;
currentSpaceId = mFile.getSpaceId();
startSyncFolderOperation(mFile);
showListOfFiles();
updateDirectoryList();
showRetainerFragment();
Expand Down
Loading