Skip to content

Commit 0e28888

Browse files
authored
Merge pull request #278 from derbyjs/doc-unload-fix
Be more defensive for delayed doc unload introduced in a320772
2 parents bff13ac + c7be247 commit 0e28888

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

lib/Model/subscriptions.js

+1-1
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,7 @@ Model.prototype._maybeUnloadDoc = function(collectionName, id) {
190190
var previous = doc.get();
191191

192192
// Remove doc from Racer
193-
model.root.collections[collectionName].remove(id);
193+
if (model.root.collections[collectionName]) model.root.collections[collectionName].remove(id);
194194
// Remove doc from Share
195195
if (doc.shareDoc) doc.shareDoc.destroy();
196196

0 commit comments

Comments
 (0)