We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86491fd commit c063e09Copy full SHA for c063e09
models/window/stream_config.py
@@ -285,7 +285,7 @@ def copy_key(self):
285
@Slot()
286
def _report_face(self):
287
report_worker = ReportFaceRecognitionWorker(
288
- app_state.room_info["parent_area"],
+ app_state.room_info["area_code"],
289
app_state.stream_status.face_message
290
)
291
self.parent_window.add_thread(
models/workers/face_auth/report_face.py
@@ -8,7 +8,7 @@
8
9
10
class ReportFaceRecognitionWorker(BaseWorker):
11
- def __init__(self, area: str, message: str):
+ def __init__(self, area: int, message: str):
12
super().__init__(name="人脸报告")
13
self.area = area
14
self.message = message
0 commit comments