Fix potenital infinite loop during process events

This commit is contained in:
antmanler 2018-08-25 13:29:58 +08:00
parent 22f70fc953
commit 22745ac92c
No known key found for this signature in database
GPG Key ID: A974C2B79A70140B
1 changed files with 1 additions and 0 deletions

View File

@ -111,6 +111,7 @@ export default Mixin.create({
Ember.beginPropertyChanges();
while ( event ) {
if ( !event.data ) {
event = queue.dequeue();
continue;
}