Skip to content

Commit

Permalink
fix: scrape-archived-courses
Browse files Browse the repository at this point in the history
  • Loading branch information
ImJustChew committed Jun 3, 2024
1 parent d5f3b6c commit e18d5a9
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/app/api/scrape-archived-courses/route.ts
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@ export const GET = async (request: NextRequest, _try = 0) => {
const response = await fetch(baseUrl, {
body: new URLSearchParams({
'ACIXSTORE': `${ACIXSTORE}`,
'YS': `${yearSemester}`,
'YS': `${yearSemester.slice(0, 3)}|${yearSemester.slice(3, 5)}`,
'cond': 'a',
'cou_code': `${department.code}`,
'auth_num': `${answer}`,
Expand Down

0 comments on commit e18d5a9

Please sign in to comment.