From 290283f810304b8db31d51dd0dbe57db96714129 Mon Sep 17 00:00:00 2001 From: lilia Date: Wed, 3 Jun 2015 10:29:20 -0700 Subject: [PATCH] Conversations do not require timestamps Synced contacts will not include timestamps --- js/models/conversations.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/models/conversations.js b/js/models/conversations.js index 06fc24c12..035bfb676 100644 --- a/js/models/conversations.js +++ b/js/models/conversations.js @@ -42,7 +42,7 @@ }, validate: function(attributes, options) { - var required = ['id', 'type', 'timestamp']; + var required = ['id', 'type']; var missing = _.filter(required, function(attr) { return !attributes[attr]; }); if (missing.length) { return "Conversation must have " + missing; }