Skip to content

Commit

Permalink
Merge pull request #169 from aopell/develop
Browse files Browse the repository at this point in the history
Version 5.6.1
  • Loading branch information
aopell authored Nov 21, 2019
2 parents 60e28e0 + dfd1446 commit 4257d0f
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions js/grades.js
Original file line number Diff line number Diff line change
Expand Up @@ -242,7 +242,7 @@ var fetchQueue = [];
try {
await processAssignment(assignment);
} catch (err) {
addEditDisableReason({error: err, course, assignment});
addEditDisableReason({error: JSON.stringify(err, Object.getOwnPropertyNames(err)), courseId, course: title.textContent, assignment: assignment.textContent});
if (!assignment.classList.contains("dropped") && assignment.querySelector(".missing")) {
// consequential failure: our denominator is invalid
invalidateCatTotal = true;
Expand Down Expand Up @@ -285,7 +285,7 @@ var fetchQueue = [];
}
}
} catch (err) {
addEditDisableReason({error: err, category})
addEditDisableReason({error: JSON.stringify(err, Object.getOwnPropertyNames(err)), category: category.textContent})
}
}

Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"update_url": "https://aopell.me/SchoologyPlus/update.json"
}
},
"version": "5.6",
"version": "5.6.1",
"icons": {
"128": "imgs/[email protected]",
"64": "imgs/[email protected]",
Expand Down

0 comments on commit 4257d0f

Please sign in to comment.