소스 검색

修复查询家庭设备返回值问题

peng 3 년 전
부모
커밋
e86150d4f5
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      Controller/SensorGateway/GatewayFamilyRoomController.py

+ 1 - 1
Controller/SensorGateway/GatewayFamilyRoomController.py

@@ -313,7 +313,7 @@ class GatewayFamilyRoomView(View):
 
             device_room['gateways'] = gateways
             device_room['cameras'] = cameras
-            device_room['sort'] = sort
+            device_room['sort'] = list(sort)
             return response.json(0, device_room)
         except Exception as e:
             return response.json(500, repr(e))