Special plugin loading case for xep_0115 no longer needed.
This commit is contained in:
parent
e510875f64
commit
1ca0c46333
1 changed files with 0 additions and 7 deletions
|
@ -226,13 +226,6 @@ class BaseXMPP(XMLStream):
|
|||
- The send queue processor
|
||||
- The scheduler
|
||||
"""
|
||||
if 'xep_0115' in self.plugin:
|
||||
name = 'xep_0115'
|
||||
if not hasattr(self.plugin[name], 'post_inited'):
|
||||
if hasattr(self.plugin[name], 'post_init'):
|
||||
self.plugin[name].post_init()
|
||||
self.plugin[name].post_inited = True
|
||||
|
||||
for name in self.plugin:
|
||||
if not hasattr(self.plugin[name], 'post_inited'):
|
||||
if hasattr(self.plugin[name], 'post_init'):
|
||||
|
|
Loading…
Reference in a new issue