Bläddra i källkod

05/26/2021 07:20:43 AM MST

master
coldstar 3 år sedan
förälder
incheckning
a670e940a1
1 ändrade filer med 2 tillägg och 2 borttagningar
  1. +2
    -2
      routes/baseActionsRouter.js

+ 2
- 2
routes/baseActionsRouter.js Visa fil

@@ -197,7 +197,7 @@ router.post("/search", function(req, res) {

query = query.replace(/,/g, "");

if (query.stringLength < 9) {
if (query.length < 9) {
if (typeof query == "number") {
res.redirect("/block-height/" + query);
console.log('This is a block');
@@ -207,7 +207,7 @@ router.post("/search", function(req, res) {
console.log('Bigger than 9 char');
}

if (query.stringLength < 40) {
if (query.length < 40) {
if (query.startsWith('V')) {
res.redirect("/address/" + query);
console.log('This is not number');


Laddar…
Avbryt
Spara