fix: null exception in album page navigated from /home

This commit is contained in:
Kingkor Roy Tirtho 2024-06-29 17:09:58 +06:00
parent a35eece00c
commit b495ed4ac0

View File

@ -46,7 +46,8 @@ class AlbumPage extends HookConsumerWidget {
},
),
routePath: "/album/${album.id}",
shareUrl: album.externalUrls!.spotify!,
shareUrl: album.externalUrls?.spotify ??
"https://open.spotify.com/album/${album.id}",
isLiked: isSavedAlbum.asData?.value ?? false,
onHeart: isSavedAlbum.asData?.value == null
? null