diff --git a/src/components/albumPage/DownloadBtn.astro b/src/components/albumPage/DownloadBtn.astro
index 0ec587c..16283f4 100644
--- a/src/components/albumPage/DownloadBtn.astro
+++ b/src/components/albumPage/DownloadBtn.astro
@@ -19,7 +19,7 @@ const disabled = direct && !permissions.includes('SKIP_ADS')
' flex justify-center items-center flex-1 rounded-md hover:bg-dark border-none border-2 hover:border-solid uppercase'
]}
target='_blank'
- href={href}
+ href={disabled ? null : href}
>
{icon ? : null}
diff --git a/src/pages/album/[id].astro b/src/pages/album/[id].astro
index 00bef2f..946a198 100644
--- a/src/pages/album/[id].astro
+++ b/src/pages/album/[id].astro
@@ -7,7 +7,6 @@ import BaseLayout from 'layouts/base.astro'
import TrackList from 'components/albumPage/TrackList'
import DownloadBtn from 'components/albumPage/DownloadBtn.astro'
import AlbumBox from 'components/AlbumBox.astro'
-import ReleaseDate from 'components/albumPage/releaseDate'
import kofi from 'img/socials/ko-fi-donate-button.png'
import discord from 'img/socials/discord.png'
@@ -263,7 +262,7 @@ const { currentLocale } = Astro
) : null}
{directUrl ? (
-
+
{m.direct()}
) : null}