mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-15 00:03:09 +02:00
fix: lint
This commit is contained in:
parent
313cbb19db
commit
4a63114ef0
2 changed files with 7 additions and 6 deletions
|
@ -189,7 +189,7 @@ function calcAge(birthdate: string): number {
|
||||||
|
|
||||||
const XPhotos = defineAsyncComponent(() => import('./index.photos.vue'));
|
const XPhotos = defineAsyncComponent(() => import('./index.photos.vue'));
|
||||||
const XActivity = defineAsyncComponent(() => import('./index.activity.vue'));
|
const XActivity = defineAsyncComponent(() => import('./index.activity.vue'));
|
||||||
const XListenBrainz = defineAsyncComponent(() => import("./index.listenbrainz.vue"));;
|
const XListenBrainz = defineAsyncComponent(() => import("./index.listenbrainz.vue"));
|
||||||
|
|
||||||
const props = withDefaults(defineProps<{
|
const props = withDefaults(defineProps<{
|
||||||
user: Misskey.entities.UserDetailed;
|
user: Misskey.entities.UserDetailed;
|
||||||
|
@ -224,7 +224,7 @@ if (props.user.listenbrainz) {
|
||||||
if (data.payload.listens && data.payload.listens.length !== 0) {
|
if (data.payload.listens && data.payload.listens.length !== 0) {
|
||||||
listenbrainzdata = true;
|
listenbrainzdata = true;
|
||||||
}
|
}
|
||||||
} catch(err) {
|
} catch (err) {
|
||||||
listenbrainzdata = false;
|
listenbrainzdata = false;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -28,6 +28,7 @@
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<script lang="ts" setup>
|
<script lang="ts" setup>
|
||||||
|
/* eslint-disable no-mixed-spaces-and-tabs */
|
||||||
import {} from "vue";
|
import {} from "vue";
|
||||||
import * as misskey from "misskey-js";
|
import * as misskey from "misskey-js";
|
||||||
import MkContainer from "@/components/MkContainer.vue";
|
import MkContainer from "@/components/MkContainer.vue";
|
||||||
|
@ -37,7 +38,7 @@ const props = withDefaults(
|
||||||
}>(),
|
}>(),
|
||||||
{},
|
{},
|
||||||
);
|
);
|
||||||
const listenbrainz = {title: '', artist: '', lastlisten: '', img: '', musicbrainzurl: '', listenbrainzurl: ''};
|
const listenbrainz = { title: '', artist: '', lastlisten: '', img: '', musicbrainzurl: '', listenbrainzurl: '' };
|
||||||
if (props.user.listenbrainz) {
|
if (props.user.listenbrainz) {
|
||||||
const getLMData = async (title: string, artist: string) => {
|
const getLMData = async (title: string, artist: string) => {
|
||||||
const response = await fetch(`https://api.listenbrainz.org/1/metadata/lookup/?artist_name=${artist}&recording_name=${title}`, {
|
const response = await fetch(`https://api.listenbrainz.org/1/metadata/lookup/?artist_name=${artist}&recording_name=${title}`, {
|
||||||
|
@ -45,7 +46,7 @@ if (props.user.listenbrainz) {
|
||||||
headers: {
|
headers: {
|
||||||
'Content-Type': 'application/json'
|
'Content-Type': 'application/json'
|
||||||
},
|
},
|
||||||
})
|
});
|
||||||
const data = await response.json();
|
const data = await response.json();
|
||||||
if (!data.recording_name) {
|
if (!data.recording_name) {
|
||||||
return null;
|
return null;
|
||||||
|
|
Loading…
Reference in a new issue