Skip to content

Commit

Permalink
fix(server): fix documents not adding to the same user id
Browse files Browse the repository at this point in the history
  • Loading branch information
LukeWasTakenn committed Mar 8, 2023
1 parent 1bb3da9 commit 882162f
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/server.ts
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@ onClientCallback('ox_identityapp:shareDocument', (playerId, data: { id: number;
if (!document) return false;

emitNet('ox_identityapp:addDocument', data.id, {
userid: player.userid,
userId: player.userid,
firstName: player.firstname,
lastName: player.lastname,
name: data.document,
Expand Down

0 comments on commit 882162f

Please sign in to comment.