Skip to content

Commit

Permalink
Use http instead of https for download.o.o links
Browse files Browse the repository at this point in the history
  • Loading branch information
hellcp committed Jun 3, 2020
1 parent 91e1f8c commit 470f55f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions app/views/distributions/_distribution.html.erb
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@
<div class="row">
<% arch["types"].try(:each) do |type| %>
<div class="col text-center">
<a href="<%= "https://download.opensuse.org#{type["primary_link"]}" %>" class="btn btn-lg btn-block btn-<%= @colour %>">
<a href="<%= "http://download.opensuse.org#{type["primary_link"]}" %>" class="btn btn-lg btn-block btn-<%= @colour %>">
<span class="typcn typcn-download-outline"></span>
<%= type["name"] %>
</a>
Expand All @@ -64,7 +64,7 @@
<p class="text-muted"><%= _(type["desc"]) %></p>

<% type["links"].try(:each) do |link| %>
<a href="<%= "https://download.opensuse.org#{link["url"]}" %>" class="btn btn-link"><%= _(link["name"]) %></a>
<a href="<%= "http://download.opensuse.org#{link["url"]}" %>" class="btn btn-link"><%= _(link["name"]) %></a>
<% end %>
</div>
</div>
Expand Down

0 comments on commit 470f55f

Please sign in to comment.