Compare commits

..

2 Commits

Author SHA1 Message Date
aclist
aa43b017d1 chore: add note
Some checks are pending
Mirror to Codeberg / mirror-to-codeberg (push) Waiting to run
2026-07-09 12:37:23 +09:00
aclist
fc86b75ca1 fix: convert str to Path 2026-07-09 12:37:09 +09:00
2 changed files with 2 additions and 1 deletions

View File

@ -344,6 +344,7 @@ def get_app_allows_downloads(path: Path, appid: int) -> bool:
# NOTE: never allow
case 2:
return False
# NOTE: no other known values at this time
case _:
return True

View File

@ -60,7 +60,7 @@ class ModManager:
@call_on_thread(dialogs.fetching_mods)
def load_mods(self) -> None:
mods = get_delimited_mods(self.path)
mods = get_delimited_mods(Path(self.path))
if len(mods) < 1:
msg = self.format_mod_statusbar()
func = StoredFunc(lambda: self.emitter.emit("mods_updated", msg, 0))