fix get playlist tracks order

+ fix utils.get_home_res_path
This commit is contained in:
geoffrey45
2023-03-15 10:01:12 +03:00
parent 64bb4f75df
commit d21a834a00
7 changed files with 62 additions and 15 deletions
+1 -1
View File
@@ -45,6 +45,6 @@ def get_home_res_path(filename: str):
Used to resolve resources in builds.
"""
try:
return (CWD / ".." / filename).resolve()
return (CWD / ".." / ".." / filename).resolve()
except ValueError:
return None