diff --git a/js/helpers.js b/js/helpers.js index 0dd32c36f..608b27899 100644 --- a/js/helpers.js +++ b/js/helpers.js @@ -918,6 +918,7 @@ function subscribeToPush(message_callback) { var proto = decodeIncomingPushMessageProtobuf(plaintext); // After this point, a) decoding errors are not the server's fault, and // b) we should handle them gracefully and tell the user they received an invalid message + console.log("Successfully decoded message with id: " + message.id); socket.send(JSON.stringify({type: 1, id: message.id})); } catch (e) { console.log("Error decoding message: " + e); diff --git a/popup.html b/popup.html index e25051564..e76942291 100644 --- a/popup.html +++ b/popup.html @@ -17,7 +17,7 @@