We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent b25e2bb commit 96c8135Copy full SHA for 96c8135
src-tauri/src/main.rs
@@ -150,7 +150,7 @@ fn check_course_exists(course_id: String) -> bool {
150
let err_selector = Selector::parse(error_str).unwrap();
151
152
let err_exists = document.select(&err_selector);
153
-
+
154
for el in err_exists {
155
if el.text().collect::<String>() == "No detailed class information found" {
156
return true;
src/utils.ts
@@ -15,7 +15,7 @@ export const openLink = async () => {
15
export const checkCourseExists = async (courseNumber: number) => {
16
const exists = await invoke("check_course_exists", {
17
courseId: courseNumber,
18
- })
+ });
19
20
return exists;
21
};
0 commit comments