Skip to content

Commit

Permalink
whoops fixed errant enum values I forgot to delete
Browse files Browse the repository at this point in the history
  • Loading branch information
pliablepixels authored and Isaac Connor committed Oct 7, 2022
1 parent 38e45c6 commit 5f8ca42
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/api/app/Model/Monitor.php
Original file line number Diff line number Diff line change
Expand Up @@ -130,7 +130,7 @@ class Monitor extends AppModel {
'Orientation' => array('ROTATE_0','ROTATE_90','ROTATE_180','ROTATE_270','FLIP_HORI','FLIP_VERT'),
// mask OutputCodec as its not an Enum in mysql
//'OutputCodec' => array( 'h264' ,'mjpeg','mpeg1','mpeg2'),
'OutputContainer' => array(1=>'auto',2=>'mp4',3=>'mkv'),
'OutputContainer' => array('auto','mp4','mkv'),
'DefaultView' => array('Events','Control'),
#'Status' => array('Unknown','NotRunning','Running','NoSignal','Signal'),
)
Expand Down

0 comments on commit 5f8ca42

Please sign in to comment.