Skip to content

Commit

Permalink
change http-urls to https
Browse files Browse the repository at this point in the history
  • Loading branch information
pidoubleyou committed Sep 26, 2024
1 parent c648ce1 commit 9ba1c43
Showing 1 changed file with 1 addition and 1 deletion.
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 9ba1c43

Please sign in to comment.