View Single Post
Posts: 75 | Thanked: 269 times | Joined on Aug 2012
#2
It's failing on line 47 in '/opt/fmms/connectors.py'

What it looks like is that it should be prompting you with the following dialog - "To retrieve the MMS your active connection you need to connect to the internet, proceed?"

What you could try if you don't care about roaming, is just comment out lines 41-51 in '/opt/fmms/connectors.py'

Code:
statusarr = phoneif.get_registration_status()[0]
if statusarr != 0:
	log.info("not in home network, not downloading..")
	if self.cont.ui:
		if not self.cont.continue_download_roaming():
			log.info("user declined to download while roaming")
			raise Exception('User is roaming, not downloading')
			return	
	else:
		self.connector = None
		raise Exception('User is roaming, not downloading')
 

The Following 4 Users Say Thank You to Ilew For This Useful Post: