diff --git a/utils.js b/utils.js index 9f01908..3275766 100644 --- a/utils.js +++ b/utils.js @@ -81,17 +81,13 @@ async function getClientToken() { async function updateClientConfig(clientId, clientSecret, accessToken, tokenExpirationDate) { try { console.log('Updating the client config with the new token...'); - await models.clientConfig.findOrCreate({ - where: { - id: 1, - }, - defaults: { - clientId: clientId, - clientSecret: clientSecret, - currentToken: accessToken, - tokenExpiration: tokenExpirationDate, - requestLimit: 500, - }, + await models.clientConfig.upsert({ + id: 1, + clientId: clientId, + clientSecret: clientSecret, + currentToken: accessToken, + tokenExpiration: tokenExpirationDate, + requestLimit: 500, }); console.log('Client config updated, new Token set'); console.log('New token expiration date: ', tokenExpirationDate);