diff --git a/js/background.js b/js/background.js
index 5647de295c..ccbf8c622c 100644
--- a/js/background.js
+++ b/js/background.js
@@ -69,8 +69,7 @@
                 name: contactDetails.name,
                 id: contactDetails.number,
                 avatar: contactDetails.avatar,
-                type: 'private',
-                active_at: null
+                type: 'private'
             }).save();
         }
 
@@ -82,7 +81,6 @@
                 members: groupDetails.members,
                 avatar: groupDetails.avatar,
                 type: 'group',
-                active_at: null
             }).save();
         }
 
diff --git a/js/models/conversations.js b/js/models/conversations.js
index 0a037455e5..cb40490f9e 100644
--- a/js/models/conversations.js
+++ b/js/models/conversations.js
@@ -27,7 +27,6 @@
       return {
         unreadCount : 0,
         timestamp   : timestamp,
-        active_at   : timestamp
       };
     },
 
@@ -180,7 +179,7 @@
     },
 
     archive: function() {
-        this.unset('active_at');
+        this.set({active_at: null});
     },
 
     destroyMessages: function() {
diff --git a/js/views/new_conversation_view.js b/js/views/new_conversation_view.js
index c4ed12e6cd..0edf4797a8 100644
--- a/js/views/new_conversation_view.js
+++ b/js/views/new_conversation_view.js
@@ -93,7 +93,6 @@
 
         createConversation: function() {
             var conversation = new Whisper.Conversation({
-                active_at: null,
                 id: this.getRecipients().at(0).id,
                 type: 'private'
             });
diff --git a/js/views/recipients_input_view.js b/js/views/recipients_input_view.js
index 62689f58a2..53f170e269 100644
--- a/js/views/recipients_input_view.js
+++ b/js/views/recipients_input_view.js
@@ -132,7 +132,6 @@
             this.new_contact = new Whisper.ConversationListItemView({
                 el: this.$new_contact,
                 model: new Whisper.Conversation({
-                    active_at: null,
                     type: 'private',
                     newContact: true
                 })