Skip to content

Commit

Permalink
Fix list selector, fixes #6.
Browse files Browse the repository at this point in the history
  • Loading branch information
Klaster1 committed Mar 8, 2019
1 parent 4f5ce29 commit b3615a1
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion content.js
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ const content = async () => {
* @param {Element} el
*/
const chnum = el => +el.textContent.match(/\d+/)[0]
const syncChapterStatus = () => document.querySelectorAll(`${MUSeriesParser.LIST_SELECTOR} tr[id]`)
const syncChapterStatus = () => document.querySelectorAll(`${MUSeriesParser.LIST_SELECTOR} .row`)
.forEach(row => {
const updateLink = row.querySelector('.newlist')
if (!updateLink) return
Expand Down
2 changes: 1 addition & 1 deletion manifest.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "MangaUpdates Notifier",
"version": "1.0.4",
"version": "1.0.5",
"manifest_version": 2,
"description": "Notifies about new chapters in your MangaUpdates reading list.",
"applications": {
Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "mangaupdates-notifier",
"version": "1.0.4",
"version": "1.0.5",
"description": "Notifies about new chapters in your MangaUpdates reading list.",
"author": "Klaster_1 <Klaster1@gmail.com>",
"repository": {
Expand Down

0 comments on commit b3615a1

Please sign in to comment.