Skip to content

Commit

Permalink
fixed: ARTE: Französische Sendungen erscheinen unter ARTE.DE
Browse files Browse the repository at this point in the history
closed #226
  • Loading branch information
alex1702 committed Sep 11, 2017
2 parents 2bb145d + c80cd2c commit 960e90f
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ apply from: "${project.rootDir}/gradle/eclipse.gradle"
sourceCompatibility = 1.8
targetCompatibility = 1.8
group = 'de.mediathekview'
version = '3.1.19'
version = '3.1.20'

def jarName = 'MServer.jar'
def mainClass = 'mServer.Main'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -249,7 +249,7 @@ private ListeFilme loadPrograms(ArteCategoryFilmsDTO dto) {

Collection<Future<DatenFilm>> futureFilme = new ArrayList<>();
dto.getProgramIds().forEach(programId -> {
futureFilme.add(executor.submit(new ArteProgramIdToDatenFilmCallable(programId, LANG_CODE, SENDERNAME)));
futureFilme.add(executor.submit(new ArteProgramIdToDatenFilmCallable(programId, LANG_CODE, getSendername())));
});

CopyOnWriteArrayList<DatenFilm> finishedFilme = new CopyOnWriteArrayList<>();
Expand Down

0 comments on commit 960e90f

Please sign in to comment.