Skip to content

Commit

Permalink
Update camerastreammodel.cpp
Browse files Browse the repository at this point in the history
  • Loading branch information
raphaelscholle committed Nov 24, 2024
1 parent b503ba3 commit 6bb278f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion app/telemetry/models/camerastreammodel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -64,7 +64,7 @@ QString CameraStreamModel::camera_codec_to_string(int camera_codec)
QString CameraStreamModel::camera_recording_mode_to_string(int recording_mode)
{
if(recording_mode<0)return "n/a";
if(recording_mode==0)return "not active";
if(recording_mode==0)return "disabled";
if(recording_mode==1)return "active";
return "error";
}
Expand Down

0 comments on commit 6bb278f

Please sign in to comment.