瀏覽代碼

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

master
coldstar 3 年之前
父節點
當前提交
a670e940a1
共有 1 個檔案被更改,包括 2 行新增2 行删除
  1. +2
    -2
      routes/baseActionsRouter.js

+ 2
- 2
routes/baseActionsRouter.js 查看文件

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


Loading…
取消
儲存