Commit 73137036 authored by Roberto Loayza's avatar Roberto Loayza

ChannelParam

parent a5b9350c
......@@ -462,6 +462,10 @@ public class AgentService extends CustomPaginationService<Agent> {
List<Channel> channels = (List<Channel>) channelRepository.findAll();
for (Channel channel : channels) {
List<ChannelParam> channelParamList = channel.getParameters();
for (ChannelParam channelParam : channelParamList) {
channelParam.setTraductions(channelParam.getTraductions().replace("\\", ""));
}
channelsBean.add(ChannelBean.clone(channel));
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment