cola 2 年 前
コミット
f024e5cec4
1 ファイル変更2 行追加1 行削除
  1. 2 1
      handlers/PitcherPanelHandler.py

+ 2 - 1
handlers/PitcherPanelHandler.py

@@ -94,7 +94,8 @@ class AgentList(BaseHandler):
         if not self._au:
             self.write_fail(msg='auth error')
         else:
-            data = get_agent_list()
+            args = self.get_args()
+            data = get_agent_list(args.get("pitcher"))
             self.write_json(data=data)