diff --git a/app/views/albums/show.html.erb b/app/views/albums/show.html.erb
index cd1aa43b..1f4dadcf 100644
--- a/app/views/albums/show.html.erb
+++ b/app/views/albums/show.html.erb
@@ -59,7 +59,11 @@
<%= song.name %>
<% if @album.artist.various? %>
- <%= link_to song.artist.name, artist_path(song.artist), class: "c-list__item__subtext" %>
+ <% if native_app? %>
+
<%= song.artist.name %>
+ <% else %>
+ <%= link_to song.artist.name, artist_path(song.artist), class: "c-list__item__subtext" %>
+ <% end %>
<% end %>
<%= format_duration(song.duration) %>
@@ -71,6 +75,11 @@
<%= icon_tag "more-vertical", size: "small", title: t("label.more") %>