mirror of
https://gitea.invidious.io/iv-org/invidious-copy-2023-06-08.git
synced 2024-08-15 00:53:38 +00:00
Replace == with empty?
This commit is contained in:
parent
8eca5b270e
commit
4ac263f1df
1 changed files with 1 additions and 1 deletions
|
@ -181,7 +181,7 @@ we're going to need to do it here in order to allow for translations.
|
|||
<% end %>
|
||||
</p>
|
||||
<% if video.license %>
|
||||
<% if video.license == "" %>
|
||||
<% if video.license.empty? %>
|
||||
<p id="license"><%= translate(locale, "License: ") %><%= translate(locale, "Standard YouTube license") %></p>
|
||||
<% else %>
|
||||
<p id="license"><%= translate(locale, "License: ") %><%= video.license %></p>
|
||||
|
|
Loading…
Reference in a new issue