Skip to content

Commit

Permalink
Fix wrong header name in node example
Browse files Browse the repository at this point in the history
  • Loading branch information
nickdnk committed Jan 2, 2023
1 parent 3274b6c commit 7f12495
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion documentation/docs/gotv.md
Original file line number Diff line number Diff line change
Expand Up @@ -96,7 +96,7 @@ app.post('/upload-file', function (req, res) {
}

// Read the Get5 headers to know what to do with the file and potentially identify the server.
const filename = req.header('Get5-DemoName');
const filename = req.header('Get5-FileName');
const matchId = req.header('Get5-MatchId');
const mapNumber = req.header('Get5-MapNumber');
const serverId = req.header('Get5-ServerId');
Expand Down

0 comments on commit 7f12495

Please sign in to comment.