Skip to content

Commit

Permalink
fix patreon login
Browse files Browse the repository at this point in the history
  • Loading branch information
vintikzzz committed Feb 18, 2024
1 parent 577c064 commit 56f09b5
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 0 deletions.
1 change: 1 addition & 0 deletions api/dist/patreon.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,6 +87,7 @@ module.exports = function (config, app, passport) {

const d = JSON.parse(res.body);
console.log('patreon json body', res.body);
console.log('patreon roles', patreonRoles);
const user = makeUser(d, patreonCampaignId, patreonRoles);
console.log('patreon user', user);
done(null, user);
Expand Down
1 change: 1 addition & 0 deletions api/src/patreon.js
Original file line number Diff line number Diff line change
Expand Up @@ -74,6 +74,7 @@ module.exports = function (config, app, passport) {
}
const d = JSON.parse(res.body);
console.log('patreon json body', res.body);
console.log('patreon roles', patreonRoles);
const user = makeUser(d, patreonCampaignId, patreonRoles);
console.log('patreon user', user);
done(null, user);
Expand Down

0 comments on commit 56f09b5

Please sign in to comment.