fix album search

This commit is contained in:
geoffrey45
2022-06-27 19:53:36 +03:00
committed by Mungai Geoffrey
parent 26b7cd376d
commit 2f78ee3883
5 changed files with 4 additions and 38 deletions
+1 -1
View File
@@ -2,7 +2,7 @@
<router-link
:to="{
name: 'AlbumView',
params: { album: album.title, artist: album.artist },
params: { hash: album.hash },
}"
class="result-item"
>
+1 -1
View File
@@ -48,7 +48,7 @@ const getAlbumArtists = async (hash: string) => {
};
const getAlbumBio = async (hash: string) => {
const { data, status } = await useAxios({
const { data, status, error } = await useAxios({
url: state.settings.uri + "/album/bio",
props: {
hash: hash,
+1
View File
@@ -36,6 +36,7 @@ export interface AlbumInfo {
is_compilation: boolean;
is_soundtrack: boolean;
is_single: boolean;
hash: string
}
export interface Artist {