mirror of
https://github.com/Universal-Debloater-Alliance/universal-android-debloater-next-generation.git
synced 2026-08-27 15:51:34 +02:00
Fix exported selection not found (#35)
This commit is contained in:
parent
adecccc1ab
commit
6d6611249e
2 changed files with 9 additions and 1 deletions
|
|
@ -10,6 +10,14 @@ and `Removed`.
|
|||
|
||||
## [Unreleased]
|
||||
|
||||
## [0.2.1] - 2021-09-28
|
||||
|
||||
## Packaging
|
||||
- `wgpu` renderer is not the default renderer (you don't need to add `--features wgpu` if you want to build UAD with `wgpu`)
|
||||
|
||||
### Fixed
|
||||
- Exported selection not found (#35)
|
||||
|
||||
## [0.2] - 2021-09-26
|
||||
|
||||
### Added
|
||||
|
|
|
|||
|
|
@ -28,7 +28,7 @@ pub async fn export_selection(packages: Vec<PackageRow>) -> Result<bool, String>
|
|||
.collect::<Vec<String>>()
|
||||
.join("\n");
|
||||
|
||||
match fs::write("uad_selection.txt", selected) {
|
||||
match fs::write("uad_exported_selection.txt", selected) {
|
||||
Ok(_) => Ok(true),
|
||||
Err(err) => Err(err.to_string())
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue