mirror of
https://github.com/moparisthebest/rcrdit
synced 2024-12-21 23:08:57 -05:00
Fix issue with 415 error when starting with java instead of maven
This commit is contained in:
parent
4ef91a13be
commit
534f0996b2
@ -75,6 +75,7 @@ import java.util.*;
|
||||
import java.util.stream.Collectors;
|
||||
import com.moparisthebest.rcrdit.requestbeans.GetScheduleRequest;
|
||||
import com.moparisthebest.rcrdit.responsebeans.GetScheduleResponse;
|
||||
import org.glassfish.jersey.jackson.JacksonFeature;
|
||||
|
||||
/**
|
||||
* Created by mopar on 2/16/17.
|
||||
@ -103,6 +104,7 @@ public class RcrdIt extends ResourceConfig implements AutoCloseable {
|
||||
|
||||
public RcrdIt(final File cfg) throws Exception {
|
||||
register(this);
|
||||
register(JacksonFeature.class);
|
||||
final XmlElement rcrdit = AbstractXmlElement.getFactory().readFromFile(cfg);
|
||||
this.databaseUrl = rcrdit.getChild("databaseUrl").getValue();
|
||||
|
||||
|
@ -43,7 +43,7 @@ public class Channel {
|
||||
this.displayNames = fromChannel.displayNames;
|
||||
this.id = fromChannel.id;
|
||||
List<Program> programsForNewChannel = new ArrayList<>();
|
||||
fromChannel.getPrograms().stream().filter((program) -> ((program.getStop().isAfter(startTime) && program.getStop().isBefore(stopTime)) || (program.getStart().isBefore(stopTime) && program.getStart().isAfter(startTime) ) || program.getStart().equals(startTime) || program.getStop().equals(stopTime) )).forEach((program) -> {
|
||||
fromChannel.getPrograms().stream().filter((program) -> ((program.getStop().isAfter(startTime) && program.getStop().isBefore(stopTime)) || (program.getStart().isBefore(stopTime) && program.getStart().isAfter(startTime) )|| (program.getStart().isBefore(startTime) && program.getStop().isAfter(stopTime) ) || program.getStart().equals(startTime) || program.getStop().equals(stopTime) )).forEach((program) -> {
|
||||
programsForNewChannel.add(program);
|
||||
});
|
||||
this.programs.addAll(programsForNewChannel);
|
||||
|
Loading…
Reference in New Issue
Block a user