Be sure to urlencode/decode event types correctly in both the web client and HS.

This commit is contained in:
Kegan Dougal 2014-11-05 11:21:55 +00:00
parent a2aafeb959
commit 9f6d1b10ad
3 changed files with 6 additions and 6 deletions

View file

@ -238,7 +238,7 @@ describe('MatrixService', function() {
homeserver: "http://example.com"
});
var roomId = "!fh38hfwfwef:example.com";
var eventType = "com.example.events.test";
var eventType = "com.example.events.test:special@characters";
var content = {
testing: "1 2 3"
};
@ -262,11 +262,11 @@ describe('MatrixService', function() {
homeserver: "http://example.com"
});
var roomId = "!fh38hfwfwef:example.com";
var eventType = "com.example.events.test";
var eventType = "com.example.events.test:special@characters";
var content = {
testing: "1 2 3"
};
var stateKey = "version1";
var stateKey = "version:1";
matrixService.sendStateEvent(roomId, eventType, content, stateKey).then(
function(response) {
expect(response.data).toEqual({});