mirror of
https://github.com/283375/arcaea-offline.git
synced 2025-04-20 22:40:17 +00:00
fix(external): st3 date correct
This commit is contained in:
parent
cb07d95d18
commit
73f388f05e
@ -43,7 +43,7 @@ class St3ScoreSource(ExternalScoreSource):
|
|||||||
clear_type = self.CLEAR_TYPES_MAP[db_clear_type]
|
clear_type = self.CLEAR_TYPES_MAP[db_clear_type]
|
||||||
|
|
||||||
date_str = str(date)
|
date_str = str(date)
|
||||||
date = None if len(date_str) < 7 else int(date_str.ljust(11, "0"))
|
date = None if len(date_str) < 7 else int(date_str.ljust(10, "0"))
|
||||||
|
|
||||||
kwargs = {
|
kwargs = {
|
||||||
"song_id": song_id,
|
"song_id": song_id,
|
||||||
|
Loading…
x
Reference in New Issue
Block a user