Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[Room] COULD NOT GET ROOM FROM ROOM.FINDALL() AFTER ROOM CREATED #32

Closed
iyjian opened this issue Sep 23, 2019 · 5 comments
Closed

[Room] COULD NOT GET ROOM FROM ROOM.FINDALL() AFTER ROOM CREATED #32

iyjian opened this issue Sep 23, 2019 · 5 comments

Comments

@iyjian
Copy link

iyjian commented Sep 23, 2019

Important:Please file the issue follow the template, or we won't help you to solve the problem.

0. Report Issue Guide

  1. Please run the following command and check whether the problem has been fixed:
npm install wechaty-puppet-padlus@next (yes)
  1. Please search in the issue first, and make sure your problem had not been reported before

1. Versions

  • What is your wechaty version?
    Answer: 0.28.3

  • What is your wechaty-puppet-padplus version?
    Answer: 0.0.114

  • What is your node version? (run node --version)
    Answer: v10.15.1

  • What os are you using
    Answer: Darwin wc-macpro-2.local 17.7.0 Darwin Kernel Version 17.7.0: Thu Dec 20 21:47:19 PST 2018; root:xnu-4570.71.22~1/RELEASE_X86_64 x86_64

2. Describe the bug

can't got room from Room.findAll() method after Room.create()

3. To Reproduce

This part is very important: if you can not provide any reproduce steps, then the problem will be very hard to be recognized.

Steps to reproduce the behavior:

process.env.WECHATY_LOG='silly'
const { Wechaty } = require('wechaty')
const { PuppetPadplus } = require('wechaty-puppet-padplus')
const qr = require('qrcode-terminal')

const puppet = new PuppetPadplus({
  token: 'you-should-known' // <-- place your token
})

const bot = new Wechaty({
  puppet,
})

console.log(`
####################### READY EVENT WOULD BE EMITTED AFTER 30 SECONDS ###################
####################### !!!!!!!!!!  BE QUICK   !!!!!!!!!!!!!!!!!!!!!! ###################
`)
setTimeout(() => {
  bot.emit('ready')
}, 30000)

bot
.on('scan', (qrcode) => {
  qr.generate(qrcode, {
    small: true
  })
})
.on('ready', async iamready => {
  const helperContactA = await bot.Contact.find({ name: '小怪兽' }) 
  const helperContactB = await bot.Contact.find({ name: '斩月' })
  const contactList = [helperContactA, helperContactB]
  const room = await bot.Room.create(contactList, 'ding')
  console.log('Bot', 'createDingRoom() new ding room created: %s', room.id)
  const rooms = await bot.Room.findAll()
  console.log('all rooms:', rooms.map(r => r.id))
  rooms.map(r => {
    if (r.id === room.id) {
      console.log('got the room just created')
    }
  })
})
.start()

4. Expected behavior

got message "got the room just created"

5. Actual behavior

hadn't get messsage "got the room just created"

6. Full Output Logs

Set env WECHATY_LOG=silly in order to set log level to silly, then we can get the full log (If you dosen't set log env, log level is info as default, we cannot get the full log)

We need full log instead of log screenshot or log fragments!

Show Logs
$ WECHATY_LOG=silly node yourbot.js

Question: Paste your FULL(DO NOT ONLY PROVIDE FRAGMENTS) log messages
Answer:
17:02:04 SILL Accessory #4<Room> constructor()
17:02:04 SILL Room constructor(22109552028@chatroom)
Bot createDingRoom() new ding room created: %s 22109552028@chatroom
17:02:04 VERB Room findAll()
17:02:04 VERB Puppet roomSearch(undefined)
17:02:04 VERB PUPPET_PADPLUS roomList()
17:02:04 SILL Puppet roomSearch() allRoomIdList.length=9
17:02:04 SILL Accessory #5<Room> constructor()
17:02:04 SILL Room constructor(11624244887@chatroom)
17:02:04 SILL Accessory #6<Room> constructor()
17:02:04 SILL Room constructor(21947452011@chatroom)
17:02:04 SILL Accessory #7<Room> constructor()
17:02:04 SILL Room constructor(22039252084@chatroom)
17:02:04 SILL Accessory #8<Room> constructor()
17:02:04 SILL Room constructor(22374451396@chatroom)
17:02:04 SILL Accessory #9<Room> constructor()
17:02:04 SILL Room constructor(22736251839@chatroom)
17:02:04 SILL Accessory #10<Room> constructor()
17:02:04 SILL Room constructor(23013251869@chatroom)
17:02:04 SILL Accessory #11<Room> constructor()
17:02:04 SILL Room constructor(23039752032@chatroom)
17:02:04 SILL Accessory #12<Room> constructor()
17:02:04 SILL Room constructor(23838143552@chatroom)
17:02:04 SILL Accessory #13<Room> constructor()
17:02:04 SILL Room constructor(23986036821@chatroom)
17:02:04 VERB Room ready()
17:02:04 VERB Puppet roomPayload(11624244887@chatroom)
17:02:04 SILL Puppet roomPayloadCache(11624244887@chatroom) cache MISS
17:02:04 SILL PUPPET_PADPLUS roomRawPayload(), roomId : 11624244887@chatroom
17:02:04 VERB Room ready()
17:02:04 VERB Puppet roomPayload(21947452011@chatroom)
17:02:04 SILL Puppet roomPayloadCache(21947452011@chatroom) cache MISS
17:02:04 SILL PUPPET_PADPLUS roomRawPayload(), roomId : 21947452011@chatroom
17:02:04 VERB Room ready()
17:02:04 VERB Puppet roomPayload(22039252084@chatroom)
17:02:04 SILL Puppet roomPayloadCache(22039252084@chatroom) cache MISS
17:02:04 SILL PUPPET_PADPLUS roomRawPayload(), roomId : 22039252084@chatroom
17:02:04 VERB Room ready()
17:02:04 VERB Puppet roomPayload(22374451396@chatroom)
17:02:04 SILL Puppet roomPayloadCache(22374451396@chatroom) cache MISS
17:02:04 SILL PUPPET_PADPLUS roomRawPayload(), roomId : 22374451396@chatroom
17:02:04 VERB Room ready()
17:02:04 VERB Puppet roomPayload(22736251839@chatroom)
17:02:04 SILL Puppet roomPayloadCache(22736251839@chatroom) cache MISS
17:02:04 SILL PUPPET_PADPLUS roomRawPayload(), roomId : 22736251839@chatroom
17:02:04 VERB Room ready()
17:02:04 VERB Puppet roomPayload(23013251869@chatroom)
17:02:04 SILL Puppet roomPayloadCache(23013251869@chatroom) cache MISS
17:02:04 SILL PUPPET_PADPLUS roomRawPayload(), roomId : 23013251869@chatroom
17:02:04 VERB Room ready()
17:02:04 VERB Puppet roomPayload(23039752032@chatroom)
17:02:04 SILL Puppet roomPayloadCache(23039752032@chatroom) cache MISS
17:02:04 SILL PUPPET_PADPLUS roomRawPayload(), roomId : 23039752032@chatroom
17:02:04 VERB Room ready()
17:02:04 VERB Puppet roomPayload(23838143552@chatroom)
17:02:04 SILL Puppet roomPayloadCache(23838143552@chatroom) cache MISS
17:02:04 SILL PUPPET_PADPLUS roomRawPayload(), roomId : 23838143552@chatroom
17:02:04 VERB Room ready()
17:02:04 VERB Puppet roomPayload(23986036821@chatroom)
17:02:04 SILL Puppet roomPayloadCache(23986036821@chatroom) cache MISS
17:02:04 SILL PUPPET_PADPLUS roomRawPayload(), roomId : 23986036821@chatroom
17:02:04 SILL PUPPET_PADPLUS roomRawPayloadParser()
17:02:04 SILL Puppet roomPayload(11624244887@chatroom) cache SET
17:02:04 SILL PUPPET_PADPLUS roomMemberList(), roomId : '11624244887@chatroom'
17:02:04 SILL PUPPET_PADPLUS roomRawPayloadParser()
17:02:04 SILL Puppet roomPayload(21947452011@chatroom) cache SET
17:02:04 SILL PUPPET_PADPLUS roomMemberList(), roomId : '21947452011@chatroom'
17:02:04 SILL PUPPET_PADPLUS roomRawPayloadParser()
17:02:04 SILL Puppet roomPayload(22039252084@chatroom) cache SET
17:02:04 SILL PUPPET_PADPLUS roomMemberList(), roomId : '22039252084@chatroom'
17:02:04 SILL PUPPET_PADPLUS roomRawPayloadParser()
17:02:04 SILL Puppet roomPayload(22374451396@chatroom) cache SET
17:02:04 SILL PUPPET_PADPLUS roomMemberList(), roomId : '22374451396@chatroom'
17:02:04 SILL PUPPET_PADPLUS roomRawPayloadParser()
17:02:04 SILL Puppet roomPayload(22736251839@chatroom) cache SET
17:02:04 SILL PUPPET_PADPLUS roomMemberList(), roomId : '22736251839@chatroom'
17:02:04 SILL PUPPET_PADPLUS roomRawPayloadParser()
17:02:04 SILL Puppet roomPayload(23013251869@chatroom) cache SET
17:02:04 SILL PUPPET_PADPLUS roomMemberList(), roomId : '23013251869@chatroom'
17:02:04 SILL PUPPET_PADPLUS roomRawPayloadParser()
17:02:04 SILL Puppet roomPayload(23039752032@chatroom) cache SET
17:02:04 SILL PUPPET_PADPLUS roomMemberList(), roomId : '23039752032@chatroom'
17:02:04 SILL PUPPET_PADPLUS roomRawPayloadParser()
17:02:04 SILL Puppet roomPayload(23838143552@chatroom) cache SET
17:02:04 SILL PUPPET_PADPLUS roomMemberList(), roomId : '23838143552@chatroom'
17:02:04 SILL PUPPET_PADPLUS roomRawPayloadParser()
17:02:04 SILL Puppet roomPayload(23986036821@chatroom) cache SET
17:02:04 SILL PUPPET_PADPLUS roomMemberList(), roomId : '23986036821@chatroom'
17:02:04 SILL Accessory #14<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_fdhiegngz1k312)
17:02:04 SILL Accessory #15<Contact> constructor()
17:02:04 SILL Contact constructor(kiki-kiki_zhang)
17:02:04 SILL Accessory #16<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_33e548iu9ws721)
17:02:04 SILL Accessory #17<Contact> constructor()
17:02:04 SILL Contact constructor(I--love--forever)
17:02:04 SILL Accessory #18<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_6r40yh4v2l4422)
17:02:04 SILL Accessory #19<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_b7rvs8pdawnu21)
17:02:04 SILL Accessory #20<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_0804138038614)
17:02:04 SILL Accessory #21<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_2f3rx2j9ncf022)
17:02:04 SILL Accessory #22<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_4jkgmp1ib73b22)
17:02:04 SILL Accessory #23<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_axlgbhdfmg9x22)
17:02:04 SILL Accessory #24<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_0qxrjziclhs422)
17:02:04 SILL Accessory #25<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_xsp6wykurd2f22)
17:02:04 SILL Accessory #26<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_thkojgn0n15n12)
17:02:04 SILL Accessory #27<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_lxf9t5gwmjxh21)
17:02:04 SILL Accessory #28<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_v2rian7y1zir22)
17:02:04 SILL Accessory #29<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_d0qoe91iooud22)
17:02:04 SILL Accessory #30<Contact> constructor()
17:02:04 SILL Contact constructor(miaomiao526)
17:02:04 SILL Accessory #31<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_s5hsksr21rqm21)
17:02:04 SILL Accessory #32<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_u0na7316jj6p21)
17:02:04 SILL Accessory #33<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_71zrsknqp53y21)
17:02:04 SILL Accessory #34<Contact> constructor()
17:02:04 SILL Contact constructor(s11559016)
17:02:04 SILL Accessory #35<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_szpbw9r3508b22)
17:02:04 SILL Accessory #36<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_9la2yyepd9lc21)
17:02:04 SILL Accessory #37<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_rb554t0hr2oe21)
17:02:04 SILL Accessory #38<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_akr3ye143bqw22)
17:02:04 SILL Accessory #39<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_5relovfvwxml12)
17:02:04 SILL Accessory #40<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_vdwoulbobfaa41)
17:02:04 SILL Accessory #41<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_e0fju8r127vm21)
17:02:04 SILL Accessory #42<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_bjr54c5s0dc522)
17:02:04 SILL Accessory #43<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_hng3brfi8x8b21)
17:02:04 SILL Accessory #44<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_4u1c6xjxo6eu22)
17:02:04 SILL Accessory #45<Contact> constructor()
17:02:04 SILL Contact constructor(july511liujun)
17:02:04 SILL Accessory #46<Contact> constructor()
17:02:04 SILL Contact constructor(fengxiaoyu870909)
17:02:04 SILL Accessory #47<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_t9tkh4id8etu21)
17:02:04 SILL Accessory #48<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_t65bwkma63rf22)
17:02:04 SILL Accessory #49<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_ujbh9iwculzz22)
17:02:04 SILL Accessory #50<Contact> constructor()
17:02:04 SILL Contact constructor(c123452365)
17:02:04 SILL Accessory #51<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_2lp6mc2asr6622)
17:02:04 SILL Accessory #52<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_qe6y0scoh85a12)
17:02:04 SILL Accessory #53<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_xa54409vy35x22)
17:02:04 SILL Accessory #54<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_1bxm69qo5d9721)
17:02:04 SILL Accessory #55<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_4780347803612)
17:02:04 SILL Accessory #56<Contact> constructor()
17:02:04 SILL Contact constructor(bingqilin879760)
17:02:04 SILL Accessory #57<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_addjc1o3kta322)
17:02:04 SILL Accessory #58<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_hnd5cz5ypsjd22)
17:02:04 SILL Accessory #59<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_jre9t1olm25n21)
17:02:04 SILL Accessory #60<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_7570bmz9d09o21)
17:02:04 SILL Accessory #61<Contact> constructor()
17:02:04 SILL Contact constructor(ZZX453745765)
17:02:04 SILL Accessory #62<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_vm2p2no9l3w221)
17:02:04 SILL Accessory #63<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_2dvy827prbqw21)
17:02:04 SILL Accessory #64<Contact> constructor()
17:02:04 SILL Contact constructor(yingxie926)
17:02:04 SILL Accessory #65<Contact> constructor()
17:02:04 SILL Contact constructor(zhangxiaoc7940)
17:02:04 SILL Accessory #66<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_2mav9j4osbbm22)
17:02:04 SILL Accessory #67<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_r9ub6k32w7rc22)
17:02:04 SILL Accessory #68<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_d2smnr4xckn121)
17:02:04 SILL Accessory #69<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_n33f9rnrxjag21)
17:02:04 SILL Accessory #70<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_ysv9cxkcz9mv22)
17:02:04 SILL Accessory #71<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_lifq3z8b2wfd21)
17:02:04 SILL Accessory #72<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_483jpt0mom1m31)
17:02:04 SILL Accessory #73<Contact> constructor()
17:02:04 SILL Contact constructor(qiong1219)
17:02:04 SILL Accessory #74<Contact> constructor()
17:02:04 SILL Contact constructor(myena163)
17:02:04 SILL Accessory #75<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_8xk7tkig1m6922)
17:02:04 SILL Accessory #76<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_i56fkvzazbpq21)
17:02:04 SILL Accessory #77<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_hi4a7yoma5ok22)
17:02:04 SILL Accessory #78<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_7wmrhk78yzin22)
17:02:04 SILL Accessory #79<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_6y8dqrqx85bm11)
17:02:04 SILL Accessory #80<Contact> constructor()
17:02:04 SILL Contact constructor(bosi0603)
17:02:04 SILL Accessory #81<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_rhlfugm72vft12)
17:02:04 SILL Accessory #82<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_7ib1t8foat0t21)
17:02:04 SILL Accessory #83<Contact> constructor()
17:02:04 SILL Contact constructor(hcr5208)
17:02:04 SILL Accessory #84<Contact> constructor()
17:02:04 SILL Contact constructor(xinpei811)
17:02:04 SILL Accessory #85<Contact> constructor()
17:02:04 SILL Contact constructor(QQYYQQY)
17:02:04 SILL Accessory #86<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_7v8k47jmhx6z22)
17:02:04 SILL Accessory #87<Contact> constructor()
17:02:04 SILL Contact constructor(aki_li)
17:02:04 SILL Accessory #88<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_265l35chvot722)
17:02:04 SILL Accessory #89<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_5uprwpm0w3lc22)
17:02:04 SILL Accessory #90<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_bk2sexhjpt6p22)
17:02:04 SILL Accessory #91<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_1023950238821)
17:02:04 SILL Accessory #92<Contact> constructor()
17:02:04 SILL Contact constructor(carrie-lin)
17:02:04 SILL Accessory #93<Contact> constructor()
17:02:04 SILL Contact constructor(xiaojing1217)
17:02:04 SILL Accessory #94<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_etiwqimgt6q611)
17:02:04 SILL Accessory #95<Contact> constructor()
17:02:04 SILL Contact constructor(rm512013)
17:02:04 SILL Accessory #96<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_u9apjzfj5udu21)
17:02:04 SILL Accessory #97<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_8puohw8ybtzt22)
17:02:04 SILL Accessory #98<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_jdrxbf4c11ad21)
17:02:04 SILL Accessory #99<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_4233432334222)
17:02:04 SILL Accessory #100<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_hszeag4ms8aa21)
17:02:04 SILL Accessory #101<Contact> constructor()
17:02:04 SILL Contact constructor(chen6076)
17:02:04 SILL Accessory #102<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_7536395407312)
17:02:04 SILL Accessory #103<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_3kc047agese022)
17:02:04 SILL Accessory #104<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_ggmw2iusz8ih21)
17:02:04 SILL Accessory #105<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_3ygxihd7d7cc22)
17:02:04 SILL Accessory #106<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_t693h7cvpm2222)
17:02:04 SILL Accessory #107<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_a4m5gsl966do12)
17:02:04 SILL Accessory #108<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_d5q1fca7tbe722)
17:02:04 SILL Accessory #109<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_6ss3f0kse27m22)
17:02:04 SILL Accessory #110<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_3163571637312)
17:02:04 SILL Accessory #111<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_srn6vak856io22)
17:02:04 SILL Accessory #112<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_87p9bruq5m8o22)
17:02:04 SILL Accessory #113<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_5b7nxoeno17s22)
17:02:04 SILL Accessory #114<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_3k08wszkyv6m22)
17:02:04 SILL Accessory #115<Contact> constructor()
17:02:04 SILL Contact constructor(lele1198185205)
17:02:04 SILL Accessory #116<Contact> constructor()
17:02:04 SILL Contact constructor(lily141631)
17:02:04 SILL Accessory #117<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_tlf2q231lkcf21)
17:02:04 SILL Accessory #118<Contact> constructor()
17:02:04 SILL Contact constructor(cherry033915)
17:02:04 SILL Accessory #119<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_ebengyati02w22)
17:02:04 SILL Accessory #120<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_1ooxvnf9zxwo12)
17:02:04 SILL Accessory #121<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_67kgjbg753e421)
17:02:04 SILL Accessory #122<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_043rcyhsaamf22)
17:02:04 SILL Accessory #123<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_0uvst3x9zwx122)
17:02:04 SILL Accessory #124<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_0997499974412)
17:02:04 SILL Accessory #125<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_rw16bmz29glc22)
17:02:04 SILL Accessory #126<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_a9yc3rkre80022)
17:02:04 SILL Accessory #127<Contact> constructor()
17:02:04 SILL Contact constructor(wan4101)
17:02:04 SILL Accessory #128<Contact> constructor()
17:02:04 SILL Contact constructor(liuying628)
17:02:04 SILL Accessory #129<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_1wdavkaok5b912)
17:02:04 SILL Accessory #130<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_k72kwrvqoese22)
17:02:04 SILL Accessory #131<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_35oi95yl8ha021)
17:02:04 SILL Accessory #132<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_4t24bzd1w9fg22)
17:02:04 SILL Accessory #133<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_gy94vt6s4skg22)
17:02:04 SILL Accessory #134<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_8af7jor5i54r22)
17:02:04 SILL Accessory #135<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_69lgiadaizaj22)
17:02:04 SILL Accessory #136<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_t7kwmtavnmsu22)
17:02:04 SILL Accessory #137<Contact> constructor()
17:02:04 SILL Contact constructor(si184250)
17:02:04 SILL Accessory #138<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_mtw2ri9134x422)
17:02:04 SILL Accessory #139<Contact> constructor()
17:02:04 SILL Contact constructor(dengyuhong)
17:02:04 SILL Accessory #140<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_myr4uoc2nqn431)
17:02:04 SILL Accessory #141<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_o23kml7xmgvz22)
17:02:04 SILL Accessory #142<Contact> constructor()
17:02:04 SILL Contact constructor(x529545959)
17:02:04 SILL Accessory #143<Contact> constructor()
17:02:04 SILL Contact constructor(pompouslyx)
17:02:04 SILL Accessory #144<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_u9h39x3844m222)
17:02:04 SILL Accessory #145<Contact> constructor()
17:02:04 SILL Contact constructor(loveing_343841654)
17:02:04 SILL Accessory #146<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_j73fbejmzjq921)
17:02:04 SILL Accessory #147<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_ytfu8gdte60t12)
17:02:04 SILL Accessory #148<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_xxpjxqh3i7vj21)
17:02:04 SILL Accessory #149<Contact> constructor()
17:02:04 SILL Contact constructor(wangling1282)
17:02:04 SILL Accessory #150<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_jbwyo71by22222)
17:02:04 SILL Accessory #151<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_6qorsji26eie12)
17:02:04 SILL Accessory #152<Contact> constructor()
17:02:04 SILL Contact constructor(shenaiy164314407)
17:02:04 SILL Accessory #153<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_mq5dy1ok83ag22)
17:02:04 SILL Accessory #154<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_0704957046612)
17:02:04 SILL Accessory #155<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_tjcsx8vse5vf22)
17:02:04 SILL Accessory #156<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_ijxn48i1wsdo21)
17:02:04 SILL Accessory #157<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_z0bmjfxocphb21)
17:02:04 SILL Accessory #158<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_78b3jdlv4hg912)
17:02:04 SILL Accessory #159<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_ovyk55fi4il921)
17:02:04 SILL Accessory #160<Contact> constructor()
17:02:04 SILL Contact constructor(wxm0413)
17:02:04 SILL Accessory #161<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_thbgszrnh65x11)
17:02:04 SILL Accessory #162<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_is4djgpbx24r52)
17:02:04 SILL Accessory #163<Contact> constructor()
17:02:04 SILL Contact constructor(liujia1142)
17:02:04 SILL Accessory #164<Contact> constructor()
17:02:04 SILL Contact constructor(hua-719)
17:02:04 SILL Accessory #165<Contact> constructor()
17:02:04 SILL Contact constructor(snowloving095)
17:02:04 SILL Accessory #166<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_go3ahpwzf9lj22)
17:02:04 SILL Accessory #167<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_hnam51n6fv4d22)
17:02:04 SILL Accessory #168<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_ccxu8x4wxk6m21)
17:02:04 SILL Accessory #169<Contact> constructor()
17:02:04 SILL Contact constructor(ming_692414008)
17:02:04 SILL Accessory #170<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_r2rbwrwjd28b21)
17:02:04 SILL Accessory #171<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_o7dglmdgpoiu21)
17:02:04 SILL Accessory #172<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_a11vtaxw2zbz22)
17:02:04 SILL Accessory #173<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_prs7iioafjxe21)
17:02:04 SILL Accessory #174<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_8501055011122)
17:02:04 SILL Accessory #175<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_jdim4ef0m9o412)
17:02:04 SILL Accessory #176<Contact> constructor()
17:02:04 SILL Contact constructor(aita5286)
17:02:04 SILL Accessory #177<Contact> constructor()
17:02:04 SILL Contact constructor(su747907598)
17:02:04 SILL Accessory #178<Contact> constructor()
17:02:04 SILL Contact constructor(liyamemg6563)
17:02:04 SILL Accessory #179<Contact> constructor()
17:02:04 SILL Contact constructor(zhangwen125)
17:02:04 SILL Accessory #180<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_cv3rtkf8920021)
17:02:04 SILL Accessory #181<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_3z3gy9samd9a22)
17:02:04 SILL Accessory #182<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_nqigxgft0d4722)
17:02:04 SILL Accessory #183<Contact> constructor()
17:02:04 SILL Contact constructor(juanjuan42400)
17:02:04 SILL Accessory #184<Contact> constructor()
17:02:04 SILL Contact constructor(F949853688)
17:02:04 SILL Accessory #185<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_fye5bb2l524e22)
17:02:04 SILL Accessory #186<Contact> constructor()
17:02:04 SILL Contact constructor(huangmouying)
17:02:04 SILL Accessory #187<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_sm5p7ycdegzq22)
17:02:04 SILL Accessory #188<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_bv2r2nl2jx6c22)
17:02:04 SILL Accessory #189<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_21jq37rso5z022)
17:02:04 SILL Accessory #190<Contact> constructor()
17:02:04 SILL Contact constructor(alhh_21)
17:02:04 SILL Accessory #191<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_s71d5rr2otoq12)
17:02:04 SILL Accessory #192<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_uzv1k9eytvdo21)
17:02:04 SILL Accessory #193<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_tpq4yzc52cry21)
17:02:04 SILL Accessory #194<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_ze44rjmvpoms22)
17:02:04 SILL Accessory #195<Contact> constructor()
17:02:04 SILL Contact constructor(liuqun914)
17:02:04 SILL Accessory #196<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_oif6gcgvhvyk22)
17:02:04 SILL Accessory #197<Contact> constructor()
17:02:04 SILL Contact constructor(ly-xiaoliangliang)
17:02:04 SILL Accessory #198<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_k4esl3dbh5ju22)
17:02:04 SILL Accessory #199<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_ep449mdpgpm822)
17:02:04 SILL Accessory #200<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_o82iixhklwme22)
17:02:04 SILL Accessory #201<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_hifts4tjxscy21)
17:02:04 SILL Accessory #202<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_ju4dh1ybaej041)
17:02:04 SILL Accessory #203<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_zu4dwmp0hori12)
17:02:04 SILL Accessory #204<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_dmgd6wtr0nfg22)
17:02:04 SILL Accessory #205<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_c0vt8f85atih21)
17:02:04 SILL Accessory #206<Contact> constructor()
17:02:04 SILL Contact constructor(shoujihu337840)
17:02:04 SILL Accessory #207<Contact> constructor()
17:02:04 SILL Contact constructor(xiaohuan534681064)
17:02:04 SILL Accessory #208<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_psubz0wmcw5621)
17:02:04 SILL Accessory #209<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_1vnwrf1ts5z321)
17:02:04 SILL Accessory #210<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_m86m3rmyy9mf22)
17:02:04 SILL Accessory #211<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_bqpitin9gdcf22)
17:02:04 SILL Accessory #212<Contact> constructor()
17:02:04 SILL Contact constructor(wxid_7bi31jug3mc512)
17:02:04 SILL Accessory #213<Contact> constructor()
17:02:04 SILL Contact constructor(wyfalk)
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() isReady() true
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() isReady() true
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() isReady() true
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() isReady() true
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() isReady() true
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() isReady() true
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() isReady() true
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() isReady() true
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() isReady() true
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() isReady() true
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() isReady() true
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() isReady() true
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() isReady() true
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() isReady() true
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() isReady() true
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() isReady() true
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() isReady() true
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() isReady() true
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() isReady() true
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() isReady() true
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() isReady() true
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() isReady() true
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() isReady() true
17:02:04 SILL Contact ready() @ Puppet#0<PuppetPadplus>()
17:02:04 SILL Contact ready() isReady() true
all rooms: [ '11624244887@chatroom',
  '21947452011@chatroom',
  '22039252084@chatroom',
  '22374451396@chatroom',
  '22736251839@chatroom',
  '23013251869@chatroom',
  '23039752032@chatroom',
  '23838143552@chatroom',
  '23986036821@chatroom' ]

7. Additional context

Add any other context about the problem here.

[bug]

@su-chang
Copy link
Member

I think u should sync room data firstly

...
await room.sync()
await bot.Room.findAll()
...

if there still some problems pls call me here. thx

@su-chang su-chang closed this as completed Apr 6, 2020
@huan
Copy link
Member

huan commented Apr 6, 2020

I do not think the room.sync() can be any help to this issue.

room.sync() can only sync() a specific room payload, it has nothing to do with the Room.findAll() underlying logic.

@su-chang
Copy link
Member

su-chang commented Apr 6, 2020

In this case, bot can not get the room payload when the room been created (one bug which has already been resolved.), room.sync() as a temporary solution for it.

So it's the reason for this issue, maybe the former response from me is not exact enough.

@huan
Copy link
Member

huan commented Apr 6, 2020

So that's a workaround, I understood.

Thanks for the explanation.

@su-chang
Copy link
Member

su-chang commented Apr 6, 2020

You are welcome.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

3 participants