Skip to content

Commit

Permalink
Fix für Protokoll in URL's von ARTE http -> https
Browse files Browse the repository at this point in the history
  • Loading branch information
alex1702 committed Sep 26, 2024
2 parents c648ce1 + 23b6377 commit 7795f3e
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 @@ -27,7 +27,7 @@ sourceCompatibility = JavaVersion.VERSION_17
targetCompatibility = JavaVersion.VERSION_17
group = 'de.mediathekview'
archivesBaseName = "MServer"
version = '3.1.239'
version = '3.1.240'

def jarName = 'MServer.jar'
def mainClass = 'mServer.Main'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public ArteVideoDTO deserialize(

final String code = value.get(ATTRIBUTE_VERSION_CODE).getAsString();
final String quality = value.get(ATTRIBUTE_QUALITY).getAsString();
final String url = value.get(ATTRIBUTE_URL).getAsString();
final String url = value.get(ATTRIBUTE_URL).getAsString().replace("http://", "https://");

final Optional<Qualities> resolution = mapQuality(quality);
final Optional<ArteVideoType> arteVideoType = ArteVideoTypeMapper.map(sender, code);
Expand Down

0 comments on commit 7795f3e

Please sign in to comment.