Compare commits
3 Commits
a2fe83ae06
...
4b013d975b
Author | SHA1 | Date | |
---|---|---|---|
4b013d975b | |||
d57aa93401 | |||
|
e15caeaa8f |
@ -1,7 +1,12 @@
|
|||||||
# Changelog
|
# Changelog
|
||||||
Documenting updates to ARTEMiS, to be updated every time the master branch is pushed to.
|
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
|
## 20240526
|
||||||
|
### DIVA
|
||||||
+ Fixed missing awaits causing coroutine error
|
+ Fixed missing awaits causing coroutine error
|
||||||
|
|
||||||
## 20240524
|
## 20240524
|
||||||
|
@ -183,7 +183,11 @@ class DivaReader(BaseReader):
|
|||||||
pv_list[pv_id] = self.add_branch(pv_list[pv_id], key_args, val)
|
pv_list[pv_id] = self.add_branch(pv_list[pv_id], key_args, val)
|
||||||
|
|
||||||
for pv_id, pv_data in pv_list.items():
|
for pv_id, pv_data in pv_list.items():
|
||||||
|
try:
|
||||||
song_id = int(pv_id.split("_")[1])
|
song_id = int(pv_id.split("_")[1])
|
||||||
|
except ValueError:
|
||||||
|
self.logger.error(f"Invalid song ID format: {pv_id}")
|
||||||
|
continue
|
||||||
if "songinfo" not in pv_data:
|
if "songinfo" not in pv_data:
|
||||||
continue
|
continue
|
||||||
if "illustrator" not in pv_data["songinfo"]:
|
if "illustrator" not in pv_data["songinfo"]:
|
||||||
|
Loading…
Reference in New Issue
Block a user