Skip to content

Commit

Permalink
fix: fix build
Browse files Browse the repository at this point in the history
  • Loading branch information
bbaldino committed Oct 13, 2022
1 parent 9d50ef2 commit a15ea0b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/lines/ssrc-line.ts
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
import { NUM, SDP_TOKEN, TOKEN } from '../regex-helpers';
import { ANY_NON_WS, NUM, SDP_TOKEN } from '../regex-helpers';
import { Line } from './line';

/**
Expand All @@ -17,7 +17,7 @@ export class SsrcLine extends Line {
attributeData: string | undefined;

private static regex = new RegExp(
`^ssrc:(${NUM}) (${SDP_TOKEN})(?::(${SDP_TOKEN})?(?: (${TOKEN}))?)?$`
`^ssrc:(${NUM}) (${SDP_TOKEN})(?::(${SDP_TOKEN})?(?: (${ANY_NON_WS}))?)?$`
);

/**
Expand Down

0 comments on commit a15ea0b

Please sign in to comment.