V2Ray před 10 roky
rodič
revize
8408b7735c
1 změnil soubory, kde provedl 5 přidání a 5 odebrání
  1. 5 5
      point.go

+ 5 - 5
point.go

@@ -92,11 +92,11 @@ func (vp *Point) Start() error {
 
 	return retry.Timed(100 /* times */, 100 /* ms */).On(func() error {
 		err := vp.ich.Listen(vp.port)
-    if err == nil {
-      log.Warning("Point server started on port %d", vp.port)
-      return nil
-    }
-    return err
+		if err == nil {
+			log.Warning("Point server started on port %d", vp.port)
+			return nil
+		}
+		return err
 	})
 }