comparison frontends/src/jp/base.py @ 1367:f71a0fc26886

merged branch frontends_multi_profiles
author Goffi <goffi@goffi.org>
date Wed, 18 Mar 2015 10:52:28 +0100
parents faa1129559b8
children 1ae9aa94c351
comparison
equal deleted inserted replaced
1295:1e3b1f9ad6e2 1367:f71a0fc26886
243 self.quit(1) 243 self.quit(1)
244 244
245 callback() 245 callback()
246 246
247 def get_full_jid(self, param_jid): 247 def get_full_jid(self, param_jid):
248 """Return the full jid if possible (add last resource when find a bare jid)""" 248 """Return the full jid if possible (add main resource when find a bare jid)"""
249 _jid = JID(param_jid) 249 _jid = JID(param_jid)
250 if not _jid.resource: 250 if not _jid.resource:
251 #if the resource is not given, we try to add the last known resource 251 #if the resource is not given, we try to add the last known resource
252 last_resource = self.bridge.getLastResource(param_jid, self.profile) 252 last_resource = self.bridge.getMainResource(param_jid, self.profile)
253 if last_resource: 253 if last_resource:
254 return "%s/%s" % (_jid.bare, last_resource) 254 return "%s/%s" % (_jid.bare, last_resource)
255 return param_jid 255 return param_jid
256 256
257 def watch_progress(self): 257 def watch_progress(self):