Compare commits

..

No commits in common. "4b013d975b7b3d9bf6818f001916d504a48bebcd" and "a2fe83ae061ccc32d1b8afdd52bf1c94e9604f20" have entirely different histories.

2 changed files with 1 additions and 10 deletions

View File

@ -1,12 +1,7 @@
# Changelog
Documenting updates to ARTEMiS, to be updated every time the master branch is pushed to.
## 20240530
### DIVA
+ Fix reader for when dificulty is not a int
## 20240526
### DIVA
+ Fixed missing awaits causing coroutine error
## 20240524

View File

@ -183,11 +183,7 @@ class DivaReader(BaseReader):
pv_list[pv_id] = self.add_branch(pv_list[pv_id], key_args, val)
for pv_id, pv_data in pv_list.items():
try:
song_id = int(pv_id.split("_")[1])
except ValueError:
self.logger.error(f"Invalid song ID format: {pv_id}")
continue
song_id = int(pv_id.split("_")[1])
if "songinfo" not in pv_data:
continue
if "illustrator" not in pv_data["songinfo"]: