Revert "[O] Unescape course name"

This reverts commit 2a4a54d60b.
This commit is contained in:
Hykilpikonna
2020-04-12 16:23:33 -04:00
parent 259d4c3474
commit fda91fbfe3
+1 -1
View File
@@ -21,7 +21,7 @@ export default class CourseInfo
{
this.id_ci = json.id_ci
this.year = json.year
this.name = unescape(json.name.trim())
this.name = json.name.trim()
this.teacher = json.teacher
this.level = json.level
this.courseIds = json.courseIds.split('|').map((id: string) => +id);