diff --git a/lib/browser/util.js b/lib/browser/util.js index e6516cba..683a4c25 100644 --- a/lib/browser/util.js +++ b/lib/browser/util.js @@ -107,7 +107,7 @@ export function createCollection(prototype, realmId, info, mutable) { resize(); } catch (e) { // If the error indicates the list was deleted, then remove this listener. - if (e.message == 'Tableview is not attached') { + if (e.message.indexOf('is not attached') > 0) { removeMutationListener(realmId, listener); } else { throw e;