Merge branch 'bstable'

This commit is contained in:
ccd0 2019-08-06 23:13:39 -07:00
commit d09ef5396e
2 changed files with 4 additions and 1 deletions

View File

@ -19,6 +19,9 @@
### v1.14.11
**v1.14.11.2** *(2019-08-07)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.11.2/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.11.2/builds/4chan-X-noupdate.crx)]
- Fix error from Catalog Links feature in native catalog when /f/ is in the custom board list. #2390
**v1.14.11.1** *(2019-08-03)* - [[Userscript](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.11.1/builds/4chan-X-noupdate.user.js)] [[Chrome extension](https://raw.githubusercontent.com/ccd0/4chan-x/1.14.11.1/builds/4chan-X-noupdate.crx)]
- Security improvements.
- Fix 2captcha on Chrome extension. #2375

View File

@ -68,7 +68,7 @@ CatalogLinks =
continue unless (
siteID and boardID and
VIEW in ['index', 'catalog'] and
(a.dataset.indexOptions or a.href.replace(tail, '') is Get.url(VIEW, {siteID, boardID}).replace(tail, ''))
(a.dataset.indexOptions or a.href.replace(tail, '') is (Get.url(VIEW, {siteID, boardID}) or '').replace(tail, ''))
)
$.extend a.dataset, {siteID, boardID}