Add team id when forcing sidestore group

This commit is contained in:
nab138
2025-11-20 22:44:00 -05:00
parent e22ca85b5b
commit 3dd4395017
4 changed files with 5 additions and 5 deletions

View File

@@ -3,7 +3,7 @@ name = "isideload"
description = "Sideload iOS/iPadOS applications"
license = "MPL-2.0"
authors = ["Nicholas Sharp <nab@nabdev.me>"]
version = "0.1.20"
version = "0.1.21"
edition = "2024"
repository = "https://github.com/nab138/isideload"
documentation = "https://docs.rs/isideload"

View File

@@ -255,9 +255,9 @@ pub async fn sideload_app(
let group_identifier = format!(
"group.{}",
if config.force_sidestore_app_group {
"com.SideStore.SideStore"
format!("com.SideStore.SideStore.{}", team.team_id)
} else {
&main_app_id_str
main_app_id_str.clone()
}
);