Skip to content

Commit

Permalink
Merge pull request #116 from TeamSparker/feature/#115
Browse files Browse the repository at this point in the history
[FIX] roomGET roomId response data string->Number
  • Loading branch information
xxeol2 authored Jan 19, 2022
2 parents 84d7d49 + f20d1bc commit 7b96a6c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion functions/api/routes/room/roomDetailGET.js
Original file line number Diff line number Diff line change
Expand Up @@ -87,7 +87,7 @@ module.exports = async (req, res) => {
console.log('otherRecords', otherRecords);

const data = {
roomId,
roomId: room.roomId,
roomName: room.roomName,
startDate: startDate.format('YYYY.MM.DD.'),
endDate: endDate.format('YYYY.MM.DD.'),
Expand Down

0 comments on commit 7b96a6c

Please sign in to comment.