Hi,
1/ I often got an error thrown on client side:
- APE version: 1.01 dev (from GitHub).
- Browser: Internet Explorer 8.0.7600
- script file: "ape-jsf/Build/uncompressed/apeCoreSession.js"
- line #2312 (class APE.PipeMulti, function deluser).
- error: "this.users is null or not an objet"
- context: it SEEMS to happen when my APE server prompts a user to
leave a multi channel with some code like:
infos.user.left("*myChannelName");
2/ when I'm using the same code on server side to prompt a user leave
a channel, (ie. 'user.left' function), I receive on client side a raw
of type 'LEFT' including properties (like name, ...). This is ok.
But in my client-side javascript code for catching 'multiPipeDelete'
event, I often get the 'pipe.properties' being null or even the 'pipe'
variable itself:
client.addEvent('multiPipeDelete', function(pipe) {
var isPipeNull = pipe == null;
// isPipeNull becomes true sometimes.
if (!isPipeNull) {
var isPipePropertiesNull = pipe.properties == null;
// isPipePropertiesNull becomes true sometimes.
}
}
Maybe are those two issues related (or not).
Best regards,
Nouk²
--
You received this message because you are subscribed to the Google
Groups "APE Project" group.
To post to this group, send email to [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/ape-project?hl=en
---
APE Project (Ajax Push Engine)
Official website : http://www.ape-project.org/
Git Hub : http://github.com/APE-Project/