Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

arte: fix url protocols #1011

Merged
merged 2 commits into from
Sep 26, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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
Loading