Skip to content

Commit

Permalink
Fix for older versions
Browse files Browse the repository at this point in the history
  • Loading branch information
cmdcolin committed Feb 16, 2023
1 parent 13eb956 commit 11776cd
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -17,8 +17,9 @@ async function readSession(sessionId) {

exports.handler = async event => {
const data = event.queryStringParameters
const { sessionId } = data
let { sessionId } = data
let tableData
sessionId = sessionId.replace(/ /g, '+')
try {
tableData = await readSession(sessionId)
} catch (e) {
Expand Down

0 comments on commit 11776cd

Please sign in to comment.