forked from cory/tildefriends
		
	Fixes chat encoding problems.
git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3362 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
		| @@ -410,11 +410,6 @@ function niceTime(lastTime, thisTime) { | ||||
| async function formatMessage(message) { | ||||
| 	var result; | ||||
| 	if (typeof message == "string") { | ||||
| 		for (let i = message.length - 1; i >= 0; i--) { | ||||
| 			if (message.charCodeAt(i) >= 128 || message.charCodeAt(i) < 32) { | ||||
| 				message = message.substring(0, i) + "\\" + message.charCodeAt(i).toString() + message.substring(i + 1); | ||||
| 			} | ||||
| 		} | ||||
| 		result = []; | ||||
| 		var regex = /(\w+:\/*\S+?)(?=(?:[\.!?])?(?:$|\s))/gi; | ||||
| 		var match; | ||||
|   | ||||
							
								
								
									
										3349
									
								
								packages/cory/libencoding/libencoding.js
									
									
									
									
									
										Normal file
									
								
							
							
						
						
									
										3349
									
								
								packages/cory/libencoding/libencoding.js
									
									
									
									
									
										Normal file
									
								
							
										
											
												File diff suppressed because one or more lines are too long
											
										
									
								
							| @@ -15,7 +15,8 @@ | ||||
| //! 		] | ||||
| //! 	}, | ||||
| //! 	"require": [ | ||||
| //! 		"libchat" | ||||
| //! 		"libchat", | ||||
| //! 		"libencoding" | ||||
| //! 	] | ||||
| //! } | ||||
|  | ||||
| @@ -683,6 +684,7 @@ XmlStanzaParser.prototype.parseNode = function(node) { | ||||
| // end xmpp.js | ||||
|  | ||||
| let ChatService = require("libchat").ChatService; | ||||
| require("libencoding"); | ||||
|  | ||||
| var gPingCount = 0; | ||||
|  | ||||
| @@ -735,10 +737,12 @@ class XmppService { | ||||
| 			self._socket.onError(self._reportError); | ||||
| 			self._socket.read(function(data) { | ||||
| 				try { | ||||
| 					print(data.__prototype__ ? "YEAH!" : "nope"); | ||||
| 					if (!data) { | ||||
| 						self._service.notifyStateChanged("disconnected"); | ||||
| 						return; | ||||
| 					} | ||||
| 					data = new TextDecoder("UTF-8").decode(new Uint8Array(Object.values(data))); | ||||
| 					parse.parse(data).forEach(function(stanza) { | ||||
| 						if (stanza.name == "stream:features") { | ||||
| 							if (!started) { | ||||
|   | ||||
		Reference in New Issue
	
	Block a user