Update SpotifyControls.plugin.js

This commit is contained in:
Mirco Wittrien 2022-11-03 12:25:31 +01:00
parent 199dd89184
commit 8d98910a4a
1 changed files with 0 additions and 1 deletions

View File

@ -86,7 +86,6 @@ module.exports = (_ => {
break;
};
BDFDB.LibraryRequires.request(`https://api.spotify.com/v1/me/player${type ? "/" + type : ""}?${Object.entries(Object.assign({device_id: device.id}, data)).map(n => `${n[0]}=${n[1]}`).join("&")}`, {method: method, headers: {authorization: `Bearer ${socket.accessToken}`}}, (error, response, result) => {
console.log(response);
if (response && response.statusCode == 401) {
BDFDB.LibraryModules.SpotifyUtils.getAccessToken(socket.accountId).then(promiseResult => {
let newSocketDevice = BDFDB.LibraryStores.SpotifyStore.getActiveSocketAndDevice();