[F] Not unescape url but unescape html

This commit is contained in:
Hykilpikonna
2020-04-12 16:24:48 -04:00
parent fda91fbfe3
commit 7ca8554d7e
+1 -1
View File
@@ -21,7 +21,7 @@ export default class CourseInfo
{
this.id_ci = json.id_ci
this.year = json.year
this.name = json.name.trim()
this.name = json.name.trim().replace('&', '&').replace('"', '"')
this.teacher = json.teacher
this.level = json.level
this.courseIds = json.courseIds.split('|').map((id: string) => +id);