From 2b33bdcd5eb2bafeb5a54de908f738d4a9e1e66c Mon Sep 17 00:00:00 2001 From: Isaac Connor Date: Wed, 4 Mar 2026 17:50:35 -0500 Subject: [PATCH] Fix missing _ --- src/zm_eventstream.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/zm_eventstream.cpp b/src/zm_eventstream.cpp index b258fd986..8190081f6 100644 --- a/src/zm_eventstream.cpp +++ b/src/zm_eventstream.cpp @@ -864,10 +864,10 @@ bool EventStream::sendFrame(Microseconds delta_us) { } } else if (event_data->SaveJPEGs & 1) { reuse_filepath_ = stringtf(staticConfig.capture_file_format.c_str(), event_data->path.c_str(), curr_frame_id); - if (stat(reuse_filepath.c_str(), &filestat) < 0) { + if (stat(reuse_filepath_.c_str(), &filestat) < 0) { Debug(1, "Capture file %s not found (bulk/interpolated frame %d), trying ffmpeg_input", - reuse_filepath.c_str(), curr_frame_id); - reuse_filepathi.clear(); + reuse_filepath_.c_str(), curr_frame_id); + reuse_filepath_.clear(); // Fall through — ffmpeg_input will be tried below if available } } else if (!ffmpeg_input) {