Skip to content

Commit

Permalink
Replace systemTimeISO with systemTimeIso (#2691)
Browse files Browse the repository at this point in the history
Signed-off-by: Carlos Agüero <[email protected]>
  • Loading branch information
caguero authored Dec 2, 2024
1 parent 1a88131 commit 4c4fe35
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/systems/camera_video_recorder/CameraVideoRecorder.cc
Original file line number Diff line number Diff line change
Expand Up @@ -183,7 +183,7 @@ bool CameraVideoRecorderPrivate::OnRecordVideo(const msgs::VideoRecord &_msg,
// create filename with timestamped suffix if path is not specified
if (this->recordVideoSavePath.empty())
{
std::string str = common::systemTimeISO();
std::string str = common::systemTimeIso();
std::string prefix = this->cameraName;
prefix = std::regex_replace(prefix, std::regex("::"), "_");
this->recordVideoSavePath = prefix + "_" + str + "." +
Expand Down

0 comments on commit 4c4fe35

Please sign in to comment.