From 59fc8e07c6e7fb7e28c844e86d39f4e307df9fba Mon Sep 17 00:00:00 2001 From: joel Date: Fri, 3 May 2024 20:57:29 +0100 Subject: [PATCH] memes --- ui/app.vue | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/ui/app.vue b/ui/app.vue index 734fd83..0fc7cf9 100644 --- a/ui/app.vue +++ b/ui/app.vue @@ -38,7 +38,7 @@ const playlist = ref([]); const nowPlaying = ref({}); - const skipText = ref("Vote song is shit"); + const skipText = ref("Vote song uploader is a cunt"); async function refreshPlaylist () { playlist.value = await $fetch(runtimeConfig.public.apiEndpoint + `/tracks`).catch((error) => error.data) @@ -48,10 +48,10 @@ try { await $fetch(`${runtimeConfig.public.apiEndpoint}/votes/skip`, {method: 'POST', body: { uri: nowPlaying.value.uri }}) skipText.value = "Order received, Obergruppenführer"; - setTimeout(() => skipText.value = "Vote song is shit", 10000) + setTimeout(() => skipText.value = "Vote song uploader is a cunt", 10000) } catch (error) { skipText.value = "Chill out, music hitler"; - setTimeout(() => skipText.value = "Vote song is shit", 10000) + setTimeout(() => skipText.value = "Vote song uploader is a cunt", 10000) } refreshPlaylist(); }