From e76f9bff5cfa02ef47948cba54d5ceb9bdf66497 Mon Sep 17 00:00:00 2001 From: Christian Nielsen <68676614+banner4422@users.noreply.github.com> Date: Mon, 9 Aug 2021 15:22:02 +0200 Subject: [PATCH] forgot to uncomment lastfm --- src/commands/features/lastfm.ts | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/commands/features/lastfm.ts b/src/commands/features/lastfm.ts index d43fc74..a97f3b4 100644 --- a/src/commands/features/lastfm.ts +++ b/src/commands/features/lastfm.ts @@ -18,7 +18,7 @@ const lastfmAPI = axios.create({ baseURL: "https://ws.audioscrobbler.com/2.0", params: { api_key: api_key, format: 'json' } }); -/* + let spotifyCred = new SpotifyWebApi({ clientId: process.env.spotifyClientID, clientSecret: process.env.spotifyClientSecret, @@ -43,7 +43,7 @@ async function newToken () { newToken() setInterval(newToken, 3600000) -*/ + export const command: Command = { name: 'lastfm', aliases: ['fm', 'lf'],