mirror of
https://github.com/RSS-Bridge/rss-bridge.git
synced 2025-04-04 16:49:35 +00:00
[JS] Fixed TypeError: textValue is null
This commit is contained in:
parent
c302bca1e6
commit
2ddd357a62
@ -36,7 +36,7 @@ function search() {
|
||||
|
||||
}
|
||||
|
||||
if(textValue != null || uriValue != null) {
|
||||
if(textValue != null && uriValue != null) {
|
||||
|
||||
if(textValue.match(regexMatch) != null ||
|
||||
uriValue.hostname.match(regexMatch) ||
|
||||
|
Loading…
Reference in New Issue
Block a user