Fix path issue on Android 13 images
This commit is contained in:
parent
2a572a1d43
commit
f37ea5c8a7
1 changed files with 1 additions and 1 deletions
|
@ -25,7 +25,7 @@ export function partPathToSrcPath(partition: string, path: string) {
|
|||
return `${partition}/${path}`
|
||||
}
|
||||
// system
|
||||
return path
|
||||
return `${partition}/${partition}/${path}`
|
||||
}
|
||||
|
||||
export function srcPathToPartPath(srcPath: string) {
|
||||
|
|
Loading…
Reference in a new issue