View Single Post
Posts: 198 | Thanked: 82 times | Joined on Oct 2011 @ Dubrovnik, Croatia
#1354
Originally Posted by CepiPerez View Post
For people who are facing crashes, can you try this?

Find this in protocoltreenode.py:
Code:
	def readInt16(self,i,socketOnly=0):
		intTop = i.read(socketOnly);
		intBot = i.read(socketOnly);
		#Utilities.debug(str(intTop)+"------------"+str(intBot));
		value = (intTop << 8) + intBot;
		return value;
And replace with:
Code:
	def readInt16(self,i,socketOnly=0):
		intTop = i.read(socketOnly);
		intBot = i.read(socketOnly);
		#Utilities.debug(str(intTop)+"------------"+str(intBot));
		value = (intTop << 8) + intBot;
		if value is not None:
			return value;
		else:
			return "";
You mean if we are facing those crashes when switching between 3g and wlan, or... ?
__________________
BlackBerry Q10 SQN100-3 10.2.1.3175
N9 ex-owner, now Jolla curious

[tw] @kegnatz