mirror of
https://github.com/Dimillian/IceCubesApp.git
synced 2025-02-05 00:47:36 +01:00
Only show the new icon card on iPad / macOS
This commit is contained in:
parent
9b70519798
commit
b4757621f2
@ -48,7 +48,8 @@ public struct StatusRowCardView: View {
|
||||
if let title = card.title, let url = URL(string: card.url) {
|
||||
VStack(alignment: .leading) {
|
||||
let sitesWithIcons = ["apps.apple.com", "music.apple.com", "open.spotify.com"]
|
||||
if let host = url.host(), sitesWithIcons.contains(host) {
|
||||
if (UIDevice.current.userInterfaceIdiom == .pad || UIDevice.current.userInterfaceIdiom == .mac),
|
||||
let host = url.host(), sitesWithIcons.contains(host) {
|
||||
iconLinkPreview(title, url)
|
||||
} else {
|
||||
defaultLinkPreview(title, url)
|
||||
|
Loading…
x
Reference in New Issue
Block a user