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

This commit is contained in:
Virtually Nick
2025-02-26 19:19:12 -05:00
committed by GitHub

View File

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