diff --git a/.idea/git_toolbox_prj.xml b/.idea/git_toolbox_prj.xml
new file mode 100644
index 0000000..02b915b
--- /dev/null
+++ b/.idea/git_toolbox_prj.xml
@@ -0,0 +1,15 @@
+
+
+
+
+
+
+
+
+
+
+
+
+
+
+
\ No newline at end of file
diff --git a/.idea/workspace.xml b/.idea/workspace.xml
index 874684b..f0860bd 100644
--- a/.idea/workspace.xml
+++ b/.idea/workspace.xml
@@ -4,21 +4,10 @@
-
-
-
-
-
-
-
+
-
-
-
-
-
@@ -174,8 +163,17 @@
-
+
+
+
+ 1756303135240
+
+
+
+ 1756303135240
+
+
@@ -184,6 +182,10 @@
+
+
+
+
diff --git a/Entity/Variables.py b/Entity/Variables.py
index 2ba3109..b297ef1 100644
--- a/Entity/Variables.py
+++ b/Entity/Variables.py
@@ -10,7 +10,7 @@ anchorList: list[AnchorModel] = []
# 线程锁
anchorListLock = threading.Lock()
# 打招呼数据
-prologueList = ["hello"]
+prologueList = []
# 评论列表
commentsList = []
# 存储主播名和session_id的字典
diff --git a/Utils/Requester.py b/Utils/Requester.py
index 6a13702..d974b65 100644
--- a/Utils/Requester.py
+++ b/Utils/Requester.py
@@ -17,12 +17,9 @@ class Requester():
url = BaseUrl + cls.prologue
result = requests.get(headers=headers, url=url)
json = result.json()
- print("json",json
- )
data = json.get("data")
- print("返回的数据",data)
for i in data:
- prologueList.append("hello")
+ prologueList.append(i)
# 翻译