app: open welcome page if clan doesn't exist

Previously if a user started the app and the last opened clan directory does not exist anymore, it would still show the clan screen but without any machines.

This changes catches this case and throws the user back to the clan selection page
This commit is contained in:
DavHau
2025-04-30 14:36:47 +07:00
parent fcc293ab3a
commit e6ad61c266
2 changed files with 24 additions and 1 deletions

View File

@@ -15,7 +15,10 @@ log = logging.getLogger(__name__)
@API.register
def show_clan_meta(uri: str | Path) -> Meta:
def show_clan_meta(uri: str) -> Meta:
if uri.startswith("/") and not Path(uri).exists():
msg = f"Path {uri} does not exist"
raise ClanError(msg, description="clan directory does not exist")
cmd = nix_eval(
[
f"{uri}#clanInternals.inventory.meta",