Skip to content
This repository has been archived by the owner on May 23, 2023. It is now read-only.

Commit

Permalink
Merge pull request #1 from RodrigoRosmaninho/fix_event_month
Browse files Browse the repository at this point in the history
Fixed bug - google calendar event month was off-by-one
  • Loading branch information
DCruzDev authored May 4, 2019
2 parents 20f8770 + 339823e commit b218567
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion js/examsCalendar.js
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ function parseRow(row){
tempHours = row[3].innerText.split(":")
data = new Date();
data.setDate(tempDate[0]);
data.setMonth(tempDate[1]);
data.setMonth(tempDate[1]-1);
data.setFullYear(tempDate[2]);
data.setHours(tempHours[0],tempHours[1],0);

Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
{
"manifest_version": 2,
"name": "PACO UA Extension",
"version": "0.23",
"version": "0.24",

"description": "Adiciona funcionalidade ao antigo PACO da Universidade de Aveiro",

Expand Down

0 comments on commit b218567

Please sign in to comment.