Skip to content

Commit

Permalink
Fix getUserInfo (#854)
Browse files Browse the repository at this point in the history
  • Loading branch information
TheCakeChicken authored Dec 30, 2024
1 parent f4b8801 commit 0ed9794
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions lib/users/getUserInfo.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,9 +14,9 @@ exports.required = ['userId']
**/

// Define
exports.func = function (userId) {
exports.func = function (args) {
const httpOpt = {
url: `//users.roblox.com/v1/users/${userId}`,
url: `//users.roblox.com/v1/users/${args.userId}`,
options: {
json: true,
method: 'GET',
Expand Down

0 comments on commit 0ed9794

Please sign in to comment.