Skip to content

Commit

Permalink
Minor bug fix when getting USTSPACE page
Browse files Browse the repository at this point in the history
  • Loading branch information
gmsdelmundo committed Aug 30, 2017
1 parent 027de4a commit cc849b4
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion background.js
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ function sendRequest(url) {
if (xhttp.readyState == 4 && xhttp.status == 200) {
console.log("XHTTP URL: " + url);
console.log("XHTTP response: " + xhttp.responseText);
return response = xhttp.responseUrl;
return xhttp.responseText;
}
};
xhttp.open("GET", url, true);
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"manifest_version": 2,

"name": "CourseScape",
"version": "1.4",
"version": "1.4.1",
"description": "A Chrome extension to make HKUST's course-related information more accessible",

"browser_action": {
Expand Down

0 comments on commit cc849b4

Please sign in to comment.