1
Fork 0

fix a silly issue :3

This commit is contained in:
Ashley 2022-11-16 18:32:02 +01:00
parent fd5315df7f
commit 956df8e5cf

View file

@ -30,7 +30,7 @@ const config = {
// Util functions
function getJson(str) {
try {
return getJson(str);
return JSON.parse(str);
} catch {
return null;
}