Fixes a typo in conference start regexp

main
Yasen Pramatarov 2024-05-22 10:40:47 +00:00
parent f8599ae48d
commit 16356cd3da
1 changed files with 1 additions and 1 deletions

View File

@ -20,7 +20,7 @@ jvb_log_parse() {
local new_last_processed="$last_processed" local new_last_processed="$last_processed"
while IFS= read -r line; do while IFS= read -r line; do
if [[ "$line" =~ ([0-9-]+\ [0-9:.]+)\ [A-Z]+:.*\ Videobridge\.createConference#[0-9]+:\ create_conf,\ id=([a-zA-z0-9-]+) ]]; then if [[ "$line" =~ ([0-9-]+\ [0-9:.]+)\ [A-Z]+:.*\ Videobridge\.createConference#[0-9]+:\ create_conf,\ id=([a-zA-Z0-9-]+) ]]; then
timestamp="${BASH_REMATCH[1]}" timestamp="${BASH_REMATCH[1]}"
conferenceId="${BASH_REMATCH[2]}" conferenceId="${BASH_REMATCH[2]}"
if [[ "$timestamp" > "$last_processed" ]]; then if [[ "$timestamp" > "$last_processed" ]]; then