Skip to content

Commit

Permalink
test(apple): remove debugging from back field (#6)
Browse files Browse the repository at this point in the history
  • Loading branch information
aahna-ashina committed Sep 12, 2022
1 parent 0943c3d commit 50c28f3
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -76,7 +76,7 @@ export default function handler(req: NextApiRequest, res: NextApiResponse) {
} else {
const latestUpdateDate: Date = new Date(latest_updates_result.data['time'])
const latestUpdateTitle: string = latest_updates_result.data['title']
const latestUpdateContent: string = latest_updates_result.data['content'] + '\r\n\r\nwebServiceURL: ' + config.appleWebServiceUrl
const latestUpdateContent: string = latest_updates_result.data['content']

// Populate the pass template
const platform: Platform = Platform.Apple
Expand Down
2 changes: 1 addition & 1 deletion server/pages/api/downloadPass.ts
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ export default function handler(req: NextApiRequest, res: NextApiResponse) {
} else {
const latestUpdateDate: Date = new Date(latest_updates_result.data['time'])
const latestUpdateTitle: string = latest_updates_result.data['title']
const latestUpdateContent: string = latest_updates_result.data['content'] + '\r\n\r\nwebServiceURL: ' + config.appleWebServiceUrl
const latestUpdateContent: string = latest_updates_result.data['content']

// Populate the pass template
const filePath: string = Passes.generatePass(
Expand Down

0 comments on commit 50c28f3

Please sign in to comment.