In AIR, send delete event *after* the object is removed, just in case something handling the event relies on it being fully deleted.

This commit is contained in:
Sam Edwards 2013-11-19 20:16:18 -07:00
parent b449c25409
commit 26e18e2b2b
1 changed files with 1 additions and 1 deletions

View File

@ -205,9 +205,9 @@ class AstronInternalRepository(ConnectionRepository):
return
do = self.doId2do[doId]
do.sendDeleteEvent()
self.removeDOFromTables(do)
do.delete()
do.sendDeleteEvent()
def sendUpdate(self, do, fieldName, args):
"""