Skip to content

Commit

Permalink
Merge pull request #126 from FlowFuse/fix-quota
Browse files Browse the repository at this point in the history
Fix quota parsing
  • Loading branch information
hardillb authored Sep 2, 2024
2 parents 9d81a5a + 199cf5d commit e436767
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion forge/auth.js
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ module.exports = fp(async function (app, opts, done) {
authorization: `Bearer ${token}`
}
})
return project.body
return JSON.parse(project.body)
}

async function checkAuth (request, reply) {
Expand Down

0 comments on commit e436767

Please sign in to comment.