Explorar el Código

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

master
coldstar hace 3 años
padre
commit
a670e940a1
Se han modificado 1 ficheros con 2 adiciones y 2 borrados
  1. +2
    -2
      routes/baseActionsRouter.js

+ 2
- 2
routes/baseActionsRouter.js Ver fichero

@@ -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');


Cargando…
Cancelar
Guardar