Skip to content

Commit

Permalink
Merge branch 'main' into main
Browse files Browse the repository at this point in the history
  • Loading branch information
AntoninoScordino authored Jan 20, 2025
2 parents 3e5377b + 37b39e8 commit f9a87f2
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion src/core/sync.rs
Original file line number Diff line number Diff line change
Expand Up @@ -315,7 +315,7 @@ pub fn get_user_list() -> Vec<User> {
// getprop ro.serialno
pub async fn get_devices_list() -> Vec<Phone> {
retry(
Fixed::from_millis(500).take(120),
Fixed::from_millis(500).take(if cfg!(debug_assertions) { 3 } else { 120 }),
|| match adb_shell_command(false, "devices") {
Ok(devices) => {
let mut device_list: Vec<Phone> = vec![];
Expand Down
4 changes: 2 additions & 2 deletions src/core/uad_lists.rs
Original file line number Diff line number Diff line change
Expand Up @@ -112,7 +112,7 @@ impl std::fmt::Display for PackageState {
f,
"{}",
match self {
Self::All => "All packages",
Self::All => "All states",
Self::Enabled => "Enabled",
Self::Uninstalled => "Uninstalled",
Self::Disabled => "Disabled",
Expand Down Expand Up @@ -177,7 +177,7 @@ impl std::fmt::Display for Removal {
f,
"{}",
match self {
Self::All => "All",
Self::All => "All removals",
Self::Recommended => "Recommended",
Self::Advanced => "Advanced",
Self::Expert => "Expert",
Expand Down

0 comments on commit f9a87f2

Please sign in to comment.