From 00de269bb3b2e237b613735edb4d59175df6802d Mon Sep 17 00:00:00 2001 From: Not Date: Fri, 25 Nov 2022 03:24:21 +0100 Subject: [PATCH] ensure lowercase on checksum parsing --- lb_store.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lb_store.lua b/lb_store.lua index 2a6953b..896ce65 100644 --- a/lb_store.lua +++ b/lb_store.lua @@ -241,7 +241,7 @@ function parseScore(str) splits, flags, stats, - checksum + checksum:lower() ) end rawset(_G, "lb_parse_score", parseScore)