Fix path issue on Android 13 images

This commit is contained in:
flawedworld 2022-04-21 17:12:30 +01:00 committed by Daniel Micay
parent 2a572a1d43
commit f37ea5c8a7

View file

@ -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) {