From df8cb4fb39a3d2e411d577be8c78c525c31c29e4 Mon Sep 17 00:00:00 2001 From: codefiles <11915375+codefiles@users.noreply.github.com> Date: Wed, 28 May 2025 01:27:07 -0400 Subject: [PATCH] Fix home partition device mapper name (#3516) --- archinstall/lib/models/device_model.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/archinstall/lib/models/device_model.py b/archinstall/lib/models/device_model.py index 0c5133cc..b030bb38 100644 --- a/archinstall/lib/models/device_model.py +++ b/archinstall/lib/models/device_model.py @@ -1010,6 +1010,8 @@ class PartitionModification: @property def mapper_name(self) -> str | None: + if self.is_home(): + return 'home' if self.dev_path: return f'{ENC_IDENTIFIER}{self.dev_path.name}' return None