From ba5b8dcc8ebae03a06eb9bdf560c183f6be837df Mon Sep 17 00:00:00 2001 From: Jennifer Taylor Date: Sun, 13 Nov 2022 01:43:39 +0000 Subject: [PATCH] Allow proper identification of owned emblems. --- bemani/frontend/jubeat/jubeat.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/bemani/frontend/jubeat/jubeat.py b/bemani/frontend/jubeat/jubeat.py index 5ee6ec0..1cd0ff4 100644 --- a/bemani/frontend/jubeat/jubeat.py +++ b/bemani/frontend/jubeat/jubeat.py @@ -161,7 +161,7 @@ class JubeatFrontend(FrontendBase): profile.get_dict("last").get_int_array("emblem", 5) ) formatted_profile["owned_emblems"] = [ - ach.id for ach in achievements if ach.type == "emblem" + str(ach.id) for ach in achievements if ach.type == "emblem" ] formatted_profile["jubility"] = ( profile.get_int("jubility")