From 496ac30d6fcded65d3dbe0b0091796853d61e3d4 Mon Sep 17 00:00:00 2001 From: lilia Date: Thu, 11 Feb 2016 11:44:58 -0800 Subject: [PATCH] Process delivery receipts from yourself Fixes #668 // FREEBIE --- js/background.js | 5 ----- 1 file changed, 5 deletions(-) diff --git a/js/background.js b/js/background.js index a70a9eb5..56a59a04 100644 --- a/js/background.js +++ b/js/background.js @@ -234,11 +234,6 @@ var groups = new Whisper.ConversationCollection(); console.log('delivery receipt from', pushMessage.source + '.' + pushMessage.sourceDevice, timestamp); - if (pushMessage.source === textsecure.storage.user.getNumber()) { - // disregard delivery receipts from myself - return; - } - groups.fetchGroups(pushMessage.source).then(function() { messages.fetchSentAt(timestamp).then(function() { var ids = groups.pluck('id');