Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: Realm crash on invalidated object in File action sheet #1467

Draft
wants to merge 25 commits into
base: master
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
25 commits
Select commit Hold shift + click to select a range
54e7987
refactor(FileActionsFloatingPanelViewController): Force to use setFil…
adrien-coye Mar 6, 2025
3a15a14
refactor(FileActionsFloatingPanelViewController): Rework to function …
adrien-coye Mar 6, 2025
7b65c8c
chore: Linter tabulation
adrien-coye Mar 19, 2025
4fd493d
refactor: Apply new file ASAP then async refresh the view
adrien-coye Mar 19, 2025
b8a996f
chore: Code conventions on guard
adrien-coye Mar 19, 2025
21307f4
fix(FileActionsFloatingPanelViewController): Use a correctly updated …
adrien-coye Mar 19, 2025
945d968
refactor(FileActionsFloatingPanelViewController): Cleaned observeNetw…
adrien-coye Mar 20, 2025
99ab7d7
refactor(FileActionsFloatingPanelViewController): No longer need to f…
adrien-coye Mar 20, 2025
78d1d55
refactor(FileActionsFloatingPanelViewController): Cleaner realm objec…
adrien-coye Mar 27, 2025
a00b065
fix(FileActionsFloatingPanelViewController): Refresh realm object on …
adrien-coye Mar 27, 2025
7da21cd
chore: Extraneous self usage
adrien-coye Mar 27, 2025
3073b3d
fix(DriveFileManager): Make sure to cancel any related download opera…
adrien-coye Mar 28, 2025
0e94418
fix(DriveFileManager): Correctly cancel download operation
adrien-coye Mar 28, 2025
89b356a
fix(FloatingPanelActionCollectionViewCell): Prepare for reuse impleme…
adrien-coye Mar 28, 2025
75a3d4e
refactor(FileActionsFloatingPanelViewController): Centralized reload …
adrien-coye Mar 28, 2025
428baa2
refactor(FloatingPanelActionCollectionViewCell): Better cancel observ…
adrien-coye Mar 28, 2025
5e7161b
fix(FloatingPanelActionCollectionViewCell): Display offline switch st…
adrien-coye Mar 28, 2025
afb8688
fix(FileActionsFloatingPanelViewController): Refresh view once the da…
adrien-coye Mar 28, 2025
e8237c3
fix(FileActionsFloatingPanelViewController): Refresh file when needed
adrien-coye Mar 28, 2025
074a8cb
chore(FileActionsFloatingPanelViewController): Removed extraneous par…
adrien-coye Mar 28, 2025
34455b6
refactor(FileActionsFloatingPanelViewController): Guard syntax update
adrien-coye Mar 28, 2025
01f05ca
fix(FloatingPanelActionCollectionViewCell): Fix progress cell reuse
adrien-coye Mar 31, 2025
8b02487
fix(FloatingPanelActionCollectionViewCell): Observation correctly works
adrien-coye Mar 31, 2025
ddc060e
fix(setFileAvailableOffline): Make sure to reuse a local file if avai…
adrien-coye Apr 2, 2025
0caa137
chore(SwiftLint): Fix unused parameter in closure call
adrien-coye Apr 2, 2025
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
Original file line number Diff line number Diff line change
Expand Up @@ -457,7 +457,7 @@ class FileListViewController: UICollectionViewController, SwipeActionCollectionV
floatingPanelViewController.layout = fileFloatingPanelLayout(files: files)

if let file = files.first {
fileInformationsViewController.setFile(file, driveFileManager: driveFileManager)
fileInformationsViewController.setFile(from: file.uid, driveFileManager: driveFileManager)
}

floatingPanelViewController.set(contentViewController: fileInformationsViewController)
Expand Down
Loading
Loading