mirror of
https://github.com/murdos/musicbrainz-userscripts
synced 2024-12-13 20:02:27 +00:00
Fix for #128
This commit is contained in:
parent
d3de311776
commit
02f26458a8
1 changed files with 2 additions and 2 deletions
|
@ -1,7 +1,7 @@
|
|||
// ==UserScript==
|
||||
// @name Musicbrainz DiscIds Detector
|
||||
// @namespace http://userscripts.org/users/22504
|
||||
// @version 2016.03.05.0
|
||||
// @version 2016.11.11.0
|
||||
// @description Generate MusicBrainz DiscIds from online EAC logs, and check existence in MusicBrainz database.
|
||||
// @downloadURL https://raw.githubusercontent.com/murdos/musicbrainz-userscripts/master/mb_discids_detector.user.js
|
||||
// @updateURL https://raw.githubusercontent.com/murdos/musicbrainz-userscripts/master/mb_discids_detector.user.js
|
||||
|
@ -105,7 +105,7 @@ function gazellePageHandler() {
|
|||
$(torrentInfo).find('a')
|
||||
// Only investigate the ones with a log
|
||||
.filter(function (index) {
|
||||
return $(this).attr("href").match(/action=viewlog/) || $(this).text().contains("View Log");
|
||||
return $(this).attr("href").match(/action=viewlog/) || $(this).text().match(/View Log/);
|
||||
})
|
||||
.each(function () {
|
||||
|
||||
|
|
Loading…
Reference in a new issue