diff --git a/js/libtextsecure.js b/js/libtextsecure.js index fd4427e2918..73bb66cf707 100644 --- a/js/libtextsecure.js +++ b/js/libtextsecure.js @@ -38253,8 +38253,13 @@ MessageReceiver.prototype.extend({ // We do the message decryption here, instead of in the ordered pending queue, // to avoid exposing the time it took us to process messages through the time-to-ack. - // TODO: handle different types of requests. for now we blindly assume - // PUT /messages + // TODO: handle different types of requests. + if (request.path !== '/api/v1/message') { + console.log('got request', request.verb, request.path); + request.respond(200, 'OK'); + return; + } + textsecure.crypto.decryptWebsocketMessage(request.body, this.signalingKey).then(function(plaintext) { var envelope = textsecure.protobuf.Envelope.decode(plaintext); // After this point, decoding errors are not the server's diff --git a/libtextsecure/message_receiver.js b/libtextsecure/message_receiver.js index 08c19d6575d..092ad761471 100644 --- a/libtextsecure/message_receiver.js +++ b/libtextsecure/message_receiver.js @@ -62,8 +62,13 @@ MessageReceiver.prototype.extend({ // We do the message decryption here, instead of in the ordered pending queue, // to avoid exposing the time it took us to process messages through the time-to-ack. - // TODO: handle different types of requests. for now we blindly assume - // PUT /messages + // TODO: handle different types of requests. + if (request.path !== '/api/v1/message') { + console.log('got request', request.verb, request.path); + request.respond(200, 'OK'); + return; + } + textsecure.crypto.decryptWebsocketMessage(request.body, this.signalingKey).then(function(plaintext) { var envelope = textsecure.protobuf.Envelope.decode(plaintext); // After this point, decoding errors are not the server's