remove call to old XEP-0136 function
This commit is contained in:
parent
a47bb9f03c
commit
43fbcbf8cf
|
@ -292,9 +292,6 @@ class ArchivingStanzaSession(StanzaSession):
|
||||||
if self.control:
|
if self.control:
|
||||||
self.control.print_archiving_session_details()
|
self.control.print_archiving_session_details()
|
||||||
|
|
||||||
def stop_archiving_for_session(self):
|
|
||||||
self.conn.stop_archiving_session(self.thread_id)
|
|
||||||
|
|
||||||
|
|
||||||
class EncryptedStanzaSession(ArchivingStanzaSession):
|
class EncryptedStanzaSession(ArchivingStanzaSession):
|
||||||
"""
|
"""
|
||||||
|
@ -1063,8 +1060,6 @@ class EncryptedStanzaSession(ArchivingStanzaSession):
|
||||||
if self.control:
|
if self.control:
|
||||||
self.control.print_esession_details()
|
self.control.print_esession_details()
|
||||||
|
|
||||||
self.stop_archiving_for_session()
|
|
||||||
|
|
||||||
def final_steps_alice(self, form):
|
def final_steps_alice(self, form):
|
||||||
srs = b''
|
srs = b''
|
||||||
srses = secrets.secrets().retained_secrets(self.conn.name,
|
srses = secrets.secrets().retained_secrets(self.conn.name,
|
||||||
|
@ -1105,8 +1100,6 @@ class EncryptedStanzaSession(ArchivingStanzaSession):
|
||||||
if self.control:
|
if self.control:
|
||||||
self.control.print_esession_details()
|
self.control.print_esession_details()
|
||||||
|
|
||||||
self.stop_archiving_for_session()
|
|
||||||
|
|
||||||
def do_retained_secret(self, k, old_srs):
|
def do_retained_secret(self, k, old_srs):
|
||||||
"""
|
"""
|
||||||
Calculate the new retained secret. determine if the user needs to check
|
Calculate the new retained secret. determine if the user needs to check
|
||||||
|
|
Loading…
Reference in New Issue