-
Notifications
You must be signed in to change notification settings - Fork 898
fix: change default trash deletion setting from enabled to disabled #8706
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
Closed
Conversation
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Co-authored-by: Rello <[email protected]>
Copilot
AI
changed the title
[WIP] The client has the setting for "Allow deletion of items in Trash".
Users report, that when you deselect the setting, it reappears after a restart of the client. the setting seems not to be persisted
Also, default, this setting is enabled. I want to d...
fix: change default trash deletion setting from enabled to disabled
Sep 5, 2025
Collaborator
|
@copilot The File Provider extension stores the setting in its own UserDefaults. |
Copilot stopped work on behalf of
Rello due to an error
September 5, 2025 14:43
camilasan
added a commit
that referenced
this pull request
Oct 27, 2025
…ent. Related to PRs #8706 and #8925. Signed-off-by: Camila Ayres <[email protected]>
camilasan
added a commit
that referenced
this pull request
Oct 27, 2025
…ent. Related to PRs #8706 and #8925. Signed-off-by: Camila Ayres <[email protected]>
camilasan
added a commit
that referenced
this pull request
Oct 27, 2025
…ent. Related to PRs #8706 and #8925. Signed-off-by: Camila Ayres <[email protected]>
camilasan
added a commit
that referenced
this pull request
Oct 28, 2025
…ent. Related to PRs #8706 and #8925. Signed-off-by: Camila Ayres <[email protected]>
camilasan
added a commit
that referenced
this pull request
Oct 29, 2025
…ent. Related to PRs #8706 and #8925. Signed-off-by: Camila Ayres <[email protected]>
camilasan
added a commit
that referenced
this pull request
Oct 30, 2025
…ent. Related to PRs #8706 and #8925. Signed-off-by: Camila Ayres <[email protected]>
camilasan
added a commit
that referenced
this pull request
Nov 4, 2025
…ent. Related to PRs #8706 and #8925. Signed-off-by: Camila Ayres <[email protected]>
camilasan
added a commit
that referenced
this pull request
Nov 6, 2025
…ent. Related to PRs #8706 and #8925. Signed-off-by: Camila Ayres <[email protected]>
camilasan
added a commit
that referenced
this pull request
Nov 16, 2025
…ent. Related to PRs #8706 and #8925. Signed-off-by: Camila Ayres <[email protected]>
camilasan
added a commit
that referenced
this pull request
Nov 16, 2025
…ent. Related to PRs #8706 and #8925. Signed-off-by: Camila Ayres <[email protected]>
mgallien
pushed a commit
that referenced
this pull request
Nov 17, 2025
…ent. Related to PRs #8706 and #8925. Signed-off-by: Camila Ayres <[email protected]>
camilasan
added a commit
that referenced
this pull request
Nov 17, 2025
…ent. - Change variable names for more readable ones. - Related to PRs #8706 and #8925. Signed-off-by: Camila Ayres <[email protected]>
camilasan
added a commit
that referenced
this pull request
Nov 18, 2025
…ent. - Change variable names for more readable ones. - Related to PRs #8706 and #8925. Signed-off-by: Camila Ayres <[email protected]>
camilasan
added a commit
that referenced
this pull request
Nov 18, 2025
…ent. - Change variable names for more readable ones. - Related to PRs #8706 and #8925. Signed-off-by: Camila Ayres <[email protected]>
camilasan
added a commit
that referenced
this pull request
Nov 18, 2025
…ent. - Change variable names for more readable ones. - Related to PRs #8706 and #8925. Signed-off-by: Camila Ayres <[email protected]>
backportbot bot
pushed a commit
that referenced
this pull request
Nov 18, 2025
…ent. - Change variable names for more readable ones. - Related to PRs #8706 and #8925. Signed-off-by: Camila Ayres <[email protected]>
backportbot bot
pushed a commit
that referenced
this pull request
Nov 18, 2025
…ent. - Change variable names for more readable ones. - Related to PRs #8706 and #8925. Signed-off-by: Camila Ayres <[email protected]>
camilasan
added a commit
that referenced
this pull request
Nov 18, 2025
…ent. - Change variable names for more readable ones. - Related to PRs #8706 and #8925. Signed-off-by: Camila Ayres <[email protected]>
Aiiaiiio
pushed a commit
that referenced
this pull request
Nov 26, 2025
…ent. - Change variable names for more readable ones. - Related to PRs #8706 and #8925. Signed-off-by: Camila Ayres <[email protected]>
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Fixes the "Allow deletion of items in Trash" setting issues where:
true) but should be disabled (false) by defaultRoot Cause
The default value was hardcoded as
truein multiple locations throughout the macOS FileProvider codebase:FileProviderConfig.swiftreturnedtrueas fallback when no value was storedfileprovidersettingscontroller_mac.mmreturnedtruewhen XPC communication failedfileproviderxpc_mac.mminitialized withYESfor consistencyChanges
Changed all default values from
truetofalse:?? true→?? falsereturn true;→return false;YES→NOImpact
This is a breaking change for new installations, but aligns with the desired security posture of having trash deletion disabled by default.
💬 Share your feedback on Copilot coding agent for the chance to win a $200 gift card! Click here to start the survey.