Skip to content

Commit

Permalink
Version auf 3.1.13 angehoben.
Browse files Browse the repository at this point in the history
  • Loading branch information
alex1702 committed Jul 24, 2017
2 parents 935084d + 943ce54 commit 0b10bb6
Show file tree
Hide file tree
Showing 4 changed files with 3 additions and 4 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.12'
version = '3.1.13'

def jarName = 'MServer.jar'
def mainClass = 'mServer.Main'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -80,7 +80,7 @@ private GeoLocations getGeoLocation(JsonObject programElement) {
geo = GeoLocations.GEO_DE_FR;
break;
case "SAT":
geo = GeoLocations.GEO_EU;
geo = GeoLocations.GEO_DE_AT_CH_EU;
break;
case "ALL":
geo = GeoLocations.GEO_NONE;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,6 @@ public enum GeoLocations
GEO_DE_FR("DE-FR"),
GEO_AT("AT"),
GEO_CH("CH"),
GEO_EU("EU"),
GEO_WELT("WELT"),
GEO_DE_AT_CH("DE-AT-CH"),
GEO_DE_AT_CH_EU("DE-AT-CH-EU");
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ public static Collection<Object[]> data() {
return Arrays.asList(new Object[][] {
{ "/arte/arte_video_details_first_several_minors_geo_defr.json", "2017-07-10T18:15:00Z", GeoLocations.GEO_DE_FR },
{ "/arte/arte_video_details_several_majors_minors_geo_null.json", "2017-08-01T16:25:00Z", GeoLocations.GEO_NONE },
{ "/arte/arte_video_details_first_with_catchuprights_past_geo_sat.json", "2017-05-22T11:36:00Z", GeoLocations.GEO_EU },
{ "/arte/arte_video_details_first_with_catchuprights_past_geo_sat.json", "2017-05-22T11:36:00Z", GeoLocations.GEO_DE_AT_CH_EU },
{ "/arte/arte_video_details_first_without_catchuprights_geo_eudefr.json", "2017-07-16T23:30:00Z", GeoLocations.GEO_DE_FR },
{ "/arte/arte_video_details_no_broadcastprogrammings_geo_all.json", "2017-06-30T13:00:00Z", GeoLocations.GEO_NONE },
});
Expand Down

0 comments on commit 0b10bb6

Please sign in to comment.