fix: initialize string

This commit is contained in:
aclist 2026-06-14 19:45:48 +09:00
parent cee9052dea
commit 5cb4f69500
2 changed files with 2 additions and 0 deletions

View File

@ -85,6 +85,7 @@ def get_mod_size(path: Path) -> float:
def get_custom_mods(path: Path) -> list[Any]:
# TODO: rename this function for clarity ("get local vs. get custom")
mods = get_local_mods(path)
# TODO: error handling
return parse_mods(mods, use_custom=True)

View File

@ -95,6 +95,7 @@ class OfflineManager:
)
combined_mods.extend(new_symlinks)
relative_link = ""
if len(mission) > 0:
relative_link = symlink_mission(Path(steam_path), mission)