Changeset dcfa886
- Timestamp:
- 2015-05-29T05:21:18Z (9 years ago)
- Children:
- d628339
- Parents:
- 50ddfad
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
python/wa.py
r50ddfad rdcfa886 56 56 logger.addHandler(ch) 57 57 58 # Yowsup starts an entire THREAD just to do pings. I'll do them myself TYVM.59 from yowsup.layers.protocol_iq.layer import YowPingThread60 YowPingThread.start = lambda x: None61 58 62 59 # Tried this but yowsup is not passing back the result, will have to update the library. :-( … … 404 401 stack.setProp(YowCoderLayer.PROP_DOMAIN, YowConstants.DOMAIN) 405 402 stack.setProp(YowCoderLayer.PROP_RESOURCE, env.CURRENT_ENV.getResource()) 403 try: 404 stack.setProp(YowIqProtocolLayer.PROP_PING_INTERVAL, 0) 405 except AttributeError: 406 # Ping setting only exists since May 2015. 407 from yowsup.layers.protocol_iq.layer import YowPingThread 408 YowPingThread.start = lambda x: None 409 406 410 stack.setProp("org.bitlbee.Bijtje", self) 407 411
Note: See TracChangeset
for help on using the changeset viewer.