Added error catching.

pull/144/head
Mikunj 6 years ago
parent f21d1f65e6
commit 9b71e8119e

@ -23,7 +23,13 @@ class LocalLokiServer extends EventEmitter {
body.push(chunk);
})
.on('end', () => {
try {
body = Buffer.concat(body).toString();
} catch (e) {
// Error occurred while converting to string
res.statusCode = 500;
res.end();
}
// Check endpoints here
if (req.url === '/store') {

@ -75,6 +75,7 @@
};
this.handleMessage = message => {
try {
const dataPlaintext = stringToArrayBufferBase64(message);
const messageBuf = textsecure.protobuf.WebSocketMessage.decode(
dataPlaintext
@ -91,6 +92,13 @@
})
);
}
} catch (error) {
const info = {
message,
error: error.message,
};
window.log.warn('HTTP-Resources Failed to handle message:', info);
}
};
this.startPolling = async function pollServer(callback) {

@ -89,7 +89,7 @@ MessageReceiver.prototype.extend({
this.localServer
.start(0)
.then(port =>
window.log.info(`Local Server started at https://localhost:${port}`)
window.log.info(`Local Server started at localhost:${port}`)
);
// TODO: Rework this socket stuff to work with online messaging

Loading…
Cancel
Save