mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-04 07:24:13 +00: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 XActivity = defineAsyncComponent(() => import('./index.activity.vue'));
 | 
			
		||||
const XListenBrainz = defineAsyncComponent(() => import("./index.listenbrainz.vue"));;
 | 
			
		||||
const XListenBrainz = defineAsyncComponent(() => import("./index.listenbrainz.vue"));
 | 
			
		||||
 | 
			
		||||
const props = withDefaults(defineProps<{
 | 
			
		||||
	user: Misskey.entities.UserDetailed;
 | 
			
		||||
| 
						 | 
				
			
			@ -224,7 +224,7 @@ if (props.user.listenbrainz) {
 | 
			
		|||
		if (data.payload.listens && data.payload.listens.length !== 0) {
 | 
			
		||||
			listenbrainzdata = true;
 | 
			
		||||
		}
 | 
			
		||||
	} catch(err) {
 | 
			
		||||
	} catch (err) {
 | 
			
		||||
		listenbrainzdata = false;
 | 
			
		||||
	}
 | 
			
		||||
}
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
| 
						 | 
				
			
			@ -28,6 +28,7 @@
 | 
			
		|||
</template>
 | 
			
		||||
 | 
			
		||||
<script lang="ts" setup>
 | 
			
		||||
/* eslint-disable no-mixed-spaces-and-tabs */
 | 
			
		||||
import {} from "vue";
 | 
			
		||||
import * as misskey from "misskey-js";
 | 
			
		||||
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) {
 | 
			
		||||
	const getLMData = async (title: string, artist: string) => {
 | 
			
		||||
		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: {
 | 
			
		||||
				'Content-Type': 'application/json'
 | 
			
		||||
			},
 | 
			
		||||
		})
 | 
			
		||||
		});
 | 
			
		||||
		const data = await response.json();
 | 
			
		||||
		if (!data.recording_name) {
 | 
			
		||||
		return null;
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue