Skip to content

Commit

Permalink
Improve finding start of CEF message
Browse files Browse the repository at this point in the history
  • Loading branch information
klasen committed Aug 27, 2024
1 parent ed4dfcc commit 13de011
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/components/CEF.vue
Original file line number Diff line number Diff line change
Expand Up @@ -181,7 +181,7 @@ String.prototype.parseCEF = function () {
};
// search for CEF message prefix
var i = this.search(/CEF:/);
var i = this.search(/CEF:[0-9]\|/);
if (i == -1) {
// CEF prefix not found
return obj;
Expand Down

0 comments on commit 13de011

Please sign in to comment.