Skip to content

Commit cb6cb91

Browse files
v5.2.2
1 parent d5f733d commit cb6cb91

File tree

4 files changed

+8
-5
lines changed

4 files changed

+8
-5
lines changed

META-INF/com/google/android/update-binary

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,4 +7,4 @@
77
# And replace this script with the downloaded script
88

99
# Error, this script should always be replaced
10-
exit 1
10+
exit 1

README.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -451,6 +451,9 @@ Releases from v4.0.0 are compatible with Magisk v19+.
451451
Releases from v5.0.0 are recommended for Magisk v19.4+.
452452

453453
## Changelog
454+
### v5.2.2
455+
- Another quick fix taking care of a weird copy-pasta error that broke manufacturer and model simulation.
456+
454457
### v5.2.1
455458
- Quick fix for broken fingerprints list and settings export.
456459

common/util_functions.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1484,8 +1484,8 @@ print_parts() {
14841484
TMPPARTS=$(get_eq_left "$(grep $1 $CSTMPRINTS)" | sed 's|.*)\:||')
14851485
fi
14861486
if [ $(echo $TMPPARTS | grep -o "\:" | wc -l) == 1 ]; then
1487-
replace_fn SIMMANUFACTURER "\"$SIMMANUFACTURER\"" "\"\"" $LATEFILE
1488-
replace_fn SIMMODEL "\"\"" $LATEFILE
1487+
replace_fn SIMMANUFACTURER "\"$SIMMANUFACTURER\"" "\"$(echo $TMPPARTS | cut -f 1 -d ':')\"" $LATEFILE
1488+
replace_fn SIMMODEL "\"$SIMMODEL\"" "\"$(echo $TMPPARTS | cut -f 2 -d ':')\"" $LATEFILE
14891489
else
14901490
replace_fn SIMMANUFACTURER "\"$SIMMANUFACTURER\"" "\"\"" $LATEFILE
14911491
replace_fn SIMMODEL "\"$SIMMODEL\"" "\"\"" $LATEFILE

module.prop

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
id=MagiskHidePropsConf
22
name=MagiskHide Props Config
3-
version=v5.2.1-v78
4-
versionCode=54
3+
version=v5.2.2-v78
4+
versionCode=55
55
author=Didgeridoohan
66
description=Change your device's fingerprint, to pass SafetyNet's CTS Profile check. Set/reset prop values set by MagiskHide. Change any prop values easily, and set your own custom props.

0 commit comments

Comments
 (0)