Skip to content

Commit

Permalink
- Fix CI error for Linux
Browse files Browse the repository at this point in the history
  • Loading branch information
hanatyan128 committed Jan 7, 2025
1 parent c4d4560 commit bb1dfc6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/outputs/egress-link-output.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -366,8 +366,8 @@ obs_properties_t *EgressLinkOutput::getProperties()
//--- Recording group ---//
auto recordingGroup = obs_properties_create();

auto recordingChangeHandler = [](void *, obs_properties_t *_props, obs_property_t *, obs_data_t *settings) {
auto splitFile = obs_data_get_string(settings, "split_file");
auto recordingChangeHandler = [](void *, obs_properties_t *_props, obs_property_t *, obs_data_t *_settings) {
auto splitFile = obs_data_get_string(_settings, "split_file");
obs_property_set_visible(obs_properties_get(_props, "split_file_time_mins"), !strcmp(splitFile, "by_time"));
obs_property_set_visible(obs_properties_get(_props, "split_file_size_mb"), !strcmp(splitFile, "by_size"));
return true;
Expand Down

0 comments on commit bb1dfc6

Please sign in to comment.