From 451754cf3cde6fe10e622fb2e6a0ea460aee9b89 Mon Sep 17 00:00:00 2001 From: Kevin Trocolli Date: Sun, 6 Oct 2024 16:09:09 -0400 Subject: [PATCH] sao: fix my store --- titles/sao/base.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/titles/sao/base.py b/titles/sao/base.py index 44a7801..759d35b 100644 --- a/titles/sao/base.py +++ b/titles/sao/base.py @@ -688,6 +688,8 @@ class SaoBase: if profile_data['my_shop']: ac = await self.data.arcade.get_arcade(profile_data['my_shop']) if ac: + # TODO: account for machine override + resp.user_basic_data[0].my_store_id = f"{ac['country']}0{ac['id']:04d}" resp.user_basic_data[0].my_store_name = ac['name'] return resp.make()