forked from cory/tildefriends
		
	Let processes post messages to other packages with the same owner.
git-svn-id: https://www.unprompted.com/svn/projects/tildefriends/trunk@3216 ed5197a5-7fde-0310-b194-c3ffbd925b24
This commit is contained in:
		| @@ -150,9 +150,10 @@ function postMessageInternal(from, to, message) { | ||||
| 	return invoke(to.eventHandlers['onMessage'], [getUser(from, from), message]); | ||||
| } | ||||
|  | ||||
| function getService(service) { | ||||
| 	var process = this; | ||||
| 	var serviceProcess = getServiceProcess(process.packageOwner, process.packageName, service); | ||||
| function getService(service, packageName) { | ||||
| 	let process = this; | ||||
| 	let serviceName = process.packageName + '_' + service; | ||||
| 	let serviceProcess = getServiceProcess(process.packageOwner, packageName || process.packageName, serviceName); | ||||
| 	return serviceProcess.ready.then(function() { | ||||
| 		return { | ||||
| 			postMessage: postMessageInternal.bind(process, process, serviceProcess), | ||||
|   | ||||
		Reference in New Issue
	
	Block a user