Additional fixes

This commit is contained in:
Andrea Bondavalli 2023-01-15 11:15:27 +01:00
parent d1708d6ee3
commit 148b717c02
2 changed files with 2 additions and 2 deletions

View File

@ -1048,7 +1048,7 @@ std::list<StreamSink> SessionManager::get_updated_sinks(
BOOST_LOG_TRIVIAL(info)
<< "session_manager:: sink " << std::to_string(sink.id)
<< " SDP change detected version " << newVersion << " updating";
sinks_list.emplace_back(sink);
sinks_list.emplace_back(std::move(sink));
}
}
return sinks_list;

View File

@ -230,7 +230,7 @@ class Config extends Component {
<th align="left"> <input type="checkbox" onChange={e => this.setState({mdnsEnabled: e.target.checked})} checked={this.state.mdnsEnabled ? true : undefined}/> </th>
</tr>
<tr height="35">
<th align="left"> <label>Automaitc update of Sinks</label> </th>
<th align="left"> <label>Auto Sinks update</label> </th>
<th align="left"> <input type="checkbox" onChange={e => this.setState({autoSinksUpdate: e.target.checked})} checked={this.state.autoSinksUpdate ? true : undefined}/> </th>
</tr>
<tr>