We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I just noticed that you are using this.channelPath + this.userName as the f-value for messages:
this.channelPath + this.userName
f
xirsys-examples-v3/app/public/lib/xirsys-signal.js
Line 212 in d715dc1
The problem with this is, that the receiver does not recognize the leading channel since there is no trailing slash ("/"):
Line 167 in d715dc1
Therefore I've change the f-value to this.channelPath + "/" + this.userName
this.channelPath + "/" + this.userName
Am I doing something wrong, or is this a bug in your library?
The text was updated successfully, but these errors were encountered:
No branches or pull requests
I just noticed that you are using
this.channelPath + this.userName
as thef
-value for messages:xirsys-examples-v3/app/public/lib/xirsys-signal.js
Line 212 in d715dc1
But that did not work for us when the channelPath is non-empty.
The problem with this is, that the receiver does not recognize the leading channel since there is no trailing slash ("/"):
xirsys-examples-v3/app/public/lib/xirsys-signal.js
Line 167 in d715dc1
Therefore I've change the
f
-value tothis.channelPath + "/" + this.userName
Am I doing something wrong, or is this a bug in your library?
The text was updated successfully, but these errors were encountered: