From 16356cd3dae77a65ac93ed0cbf7384982e4a0d7f Mon Sep 17 00:00:00 2001 From: Yasen Pramatarov Date: Wed, 22 May 2024 10:40:47 +0000 Subject: [PATCH] Fixes a typo in conference start regexp --- jvb/jitsi-stats | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jvb/jitsi-stats b/jvb/jitsi-stats index 6cdc567..0159507 100755 --- a/jvb/jitsi-stats +++ b/jvb/jitsi-stats @@ -20,7 +20,7 @@ jvb_log_parse() { local new_last_processed="$last_processed" 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]}" conferenceId="${BASH_REMATCH[2]}" if [[ "$timestamp" > "$last_processed" ]]; then