GUACAMOLE-2005: FIlter out batches that ended up not having any keystroke events.

This commit is contained in:
Alexander Leitner
2025-02-26 17:21:48 -05:00
parent 8aec82fd85
commit cd6944c78d

View File

@@ -361,8 +361,8 @@ angular.module('player').factory('keyEventDisplayService',
}); });
// All processed batches // All processed batches with events
return batches; return batches.filter(batch => batch.events.length > 0);
}; };