@@ -238,7 +238,7 @@ func musicianTasks(userData types.LoginStatusData, data utils.RequestData, autoT
238238 }
239239 }()
240240 switch autoTasks [i ] {
241- case 399000 :
241+ case 749006 :
242242 log .Printf ("[%s] 执行音乐人签到任务中" , userData .Profile .Nickname )
243243 result , err := api .MusicianSign (data )
244244 if err != nil {
@@ -249,14 +249,14 @@ func musicianTasks(userData types.LoginStatusData, data utils.RequestData, autoT
249249 } else {
250250 log .Printf ("[%s] 音乐人签到失败: %s" , userData .Profile .Nickname , result .Message )
251251 }
252- case 398000 :
252+ case 740004 :
253253 log .Printf ("[%s] 执行发送动态任务中" , userData .Profile .Nickname )
254254 err := sendEventTask (userData , data )
255255 if err != nil {
256256 log .Println (err )
257257 }
258258 log .Printf ("[%s] 发送动态任务执行完成" , userData .Profile .Nickname )
259- case 393001 :
259+ case 732004 :
260260 log .Printf ("[%s] 执行回复评论任务中" , userData .Profile .Nickname )
261261 commentConfig := api.CommentConfig {
262262 ResType : api .ResTypeMusic ,
@@ -269,14 +269,14 @@ func musicianTasks(userData types.LoginStatusData, data utils.RequestData, autoT
269269 log .Println (err )
270270 }
271271 log .Printf ("[%s] 发送回复评论执行完成" , userData .Profile .Nickname )
272- case 395002 :
272+ case 755001 :
273273 log .Printf ("[%s] 执行发送私信任务中" , userData .Profile .Nickname )
274274 err := sendMsgTask (userData , config .SendMsgConfig .UserID [processingUser ], data )
275275 if err != nil {
276276 log .Println (err )
277277 }
278278 log .Printf ("[%s] 发送私信任务执行完成" , userData .Profile .Nickname )
279- case 135000 :
279+ case 744005 :
280280 log .Printf ("[%s] 执行发送 Mlog 任务中" , userData .Profile .Nickname )
281281 err := sendMlogTask (userData , data )
282282 if err != nil {
@@ -671,7 +671,7 @@ func parseCircleID(artistDetail types.ArtistDetailData) {
671671}
672672
673673func autoTaskAvail (val int ) bool { //
674- availAutoTasks := []int {135000 , 399000 , 398000 , 393001 , 395002 , 396002 , 755000 , 740005 }
674+ availAutoTasks := []int {740004 , 744005 , 732004 , 755001 , 749006 , 755000 , 740005 }
675675 for i := 0 ; i < len (availAutoTasks ); i ++ {
676676 if val == availAutoTasks [i ] {
677677 return true
0 commit comments