Skip to content

Commit

Permalink
* Fix cache by converting hashes to lowercase in load_beatsaver_cache…
Browse files Browse the repository at this point in the history
…_from_andruzzzhka_scrapes
  • Loading branch information
Luux committed Apr 13, 2021
1 parent 1eea067 commit 1339b74
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion cache.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ def load_beatsaver_cache_from_andruzzzhka_scrapes(self):

cache_dict = dict()
for levelinfo in scraped_cache_raw:
cache_dict[levelinfo["hash"]] = levelinfo
cache_dict[levelinfo["hash"].lower()] = levelinfo

return cache_dict, last_modified

Expand Down

0 comments on commit 1339b74

Please sign in to comment.