Skip to content

Commit

Permalink
yarr@jtoberling: v0.0.3 - Day bug fix (#928)
Browse files Browse the repository at this point in the history
* Day bug fix
  • Loading branch information
jtoberling authored Oct 10, 2023
1 parent e92f853 commit 71e4793
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion yarr@jtoberling/files/yarr@jtoberling/desklet.js
Original file line number Diff line number Diff line change
Expand Up @@ -418,7 +418,7 @@ class YarrDesklet extends Desklet.Desklet {
if (withYear) {
retStr += pDate.getFullYear().toString() + '-';
}
retStr +=(pDate.getMonth()+1).toString().padStart(2,'0') + '-' + (pDate.getDate()+1).toString().padStart(2,'0') + ' ' +
retStr +=(pDate.getMonth()+1).toString().padStart(2,'0') + '-' + pDate.getDate().toString().padStart(2,'0') + ' ' +
pDate.getHours().toString().padStart(2,'0') + ':' + pDate.getMinutes().toString().padStart(2, '0');
return retStr;
}
Expand Down
2 changes: 1 addition & 1 deletion yarr@jtoberling/files/yarr@jtoberling/metadata.json
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
"max-instances": "1",
"description": "Yet Another RSS Reader - now as Cinnamon Desklet",
"name": "Yet Another RSS Reader",
"version": "0.0.2",
"version": "0.0.3",
"uuid": "yarr@jtoberling",
"multiversion": true,
"author": "jtoberling",
Expand Down

0 comments on commit 71e4793

Please sign in to comment.