From 9eb953720c3386a90fd67040c06a75dc870e8d5b Mon Sep 17 00:00:00 2001 From: John Smith <xfgryujk@126.com> Date: Wed, 10 Jul 2019 15:16:17 +0800 Subject: [PATCH] =?UTF-8?q?=E5=85=BC=E5=AE=B9B=E7=AB=99=E5=BC=B9=E5=B9=95?= =?UTF-8?q?=E5=8D=87=E7=BA=A7=EF=BC=88=E5=8B=8B=E7=AB=A0=E4=BF=A1=E6=81=AF?= =?UTF-8?q?=E5=A4=9A=E4=BA=86=E4=B8=80=E4=B8=AA=EF=BC=89?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- blivedm.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/blivedm.py b/blivedm.py index f0b097d..b875676 100644 --- a/blivedm.py +++ b/blivedm.py @@ -131,10 +131,10 @@ class DanmakuMessage: return cls( info[0][1], info[0][2], info[0][3], info[0][4], info[0][5], info[0][7], info[0][9], info[0][10], info[1], - *info[2], - *(info[3] or (0, '', '', 0, 0, 0)), + *info[2][:8], + *(info[3][:6] or (0, '', '', 0, 0, 0)), info[4][0], info[4][2], info[4][3], - *info[5], + *info[5][:2], info[7] )