File tree Expand file tree Collapse file tree 1 file changed +5
-6
lines changed
Expand file tree Collapse file tree 1 file changed +5
-6
lines changed Original file line number Diff line number Diff line change 55转载请备注个名字,谢谢
66
7711.25 增加 阅读时长上传,阅读金币,阅读随机金币
8- 11.25 修复翻倍宝箱不同时领取的问题
8+ 11.25 修复翻倍宝箱不同时领取的问题.增加阅读金币判定
99
1010
1111⚠️cookie获取方法:
@@ -427,9 +427,8 @@ const toqqreadssrprourl = {
427427 $ . get ( toqqreadssrprourl , ( error , response , data ) => {
428428 if ( logs ) $ . log ( `${ jsname } , 金币额外奖励: ${ data } ` )
429429 ssrpro = JSON . parse ( data )
430-
431- tz +=
432- '【阅读随机金币】获得' + ssrpro . data . amount + '金币\n'
430+ if ( ssrpro . code == 0 )
431+ tz += '【阅读随机金币】获得' + ssrpro . data . amount + '金币\n'
433432
434433
435434
@@ -457,8 +456,8 @@ const toqqreadssrurl = {url: `https://mqqapi.reader.qq.com/mqq/red_packet/user/r
457456 $ . get ( toqqreadssrurl , ( error , response , data ) => {
458457 if ( logs ) $ . log ( `${ jsname } , 金币奖励: ${ data } ` )
459458 ssr = JSON . parse ( data )
460- tz +=
461- '【阅读金币】获得' + ssr . data . amount + '金币\n'
459+ if ( ssr . code == 0 )
460+ tz += '【阅读金币】获得' + ssr . data . amount + '金币\n'
462461
463462
464463
You can’t perform that action at this time.
0 commit comments