comparison src/browser/sat_browser/json.py @ 1123:63a4b8fe9782

browser: fixes to handle encryption changes in backend
author Goffi <goffi@goffi.org>
date Sat, 11 Aug 2018 18:35:37 +0200
parents 09feea19d7b9
children
comparison
equal deleted inserted replaced
1122:f6319c27f2eb 1123:63a4b8fe9782
197 197
198 def isConnected(self, dummy, callback): # FIXME 198 def isConnected(self, dummy, callback): # FIXME
199 log.warning("isConnected is not implemeted in Libervia as for now profile is connected if session is opened") 199 log.warning("isConnected is not implemeted in Libervia as for now profile is connected if session is opened")
200 callback(True) 200 callback(True)
201 201
202 def encryptionPluginsGet(self, callback, errback):
203 """e2e encryption have no sense if made on backend, so we ignore this call"""
204 callback([])
205
202 def bridgeConnect(self, callback, errback): 206 def bridgeConnect(self, callback, errback):
203 callback() 207 callback()
204 208
205 209
206 class BridgeSignals(LiberviaJsonProxy): 210 class BridgeSignals(LiberviaJsonProxy):