This commit is contained in:
v 2018-11-28 18:18:43 +03:00
parent 9a616283cb
commit 7e34635653

View File

@ -353,6 +353,13 @@ class WikiItem {
}
}
blackListed () {
if ( typeof command.urlBlacklist != 'object' ) {
return false
}
return command.urlBlacklist.some( patt => this.url.includes( patt ))
}
load () {
return http({
url: this.urlReplacements(),