Merge pull request #3873 from mempool/simon/sanitize-pubkey-search
Sanitize node pubkey search
This commit is contained in:
commit
0586e04d67
@ -373,7 +373,7 @@ class NodesApi {
|
|||||||
|
|
||||||
public async $searchNodeByPublicKeyOrAlias(search: string) {
|
public async $searchNodeByPublicKeyOrAlias(search: string) {
|
||||||
try {
|
try {
|
||||||
const publicKeySearch = search.replace('%', '') + '%';
|
const publicKeySearch = search.replace(/[^a-zA-Z0-9]/g, '') + '%';
|
||||||
const aliasSearch = search
|
const aliasSearch = search
|
||||||
.replace(/[-_.]/g, ' ') // Replace all -_. characters with empty space. Eg: "ln.nicehash" becomes "ln nicehash".
|
.replace(/[-_.]/g, ' ') // Replace all -_. characters with empty space. Eg: "ln.nicehash" becomes "ln nicehash".
|
||||||
.replace(/[^a-zA-Z0-9 ]/g, '') // Remove all special characters and keep just A to Z, 0 to 9.
|
.replace(/[^a-zA-Z0-9 ]/g, '') // Remove all special characters and keep just A to Z, 0 to 9.
|
||||||
|
Loading…
x
Reference in New Issue
Block a user