Ver código fonte

modify by hyb for cancel permission check

hyb 7 anos atrás
pai
commit
c1a04796a9
1 arquivos alterados com 4 adições e 3 exclusões
  1. 4 3
      httphandler.go

+ 4 - 3
httphandler.go

@@ -119,8 +119,9 @@ func checkSignature(body []byte, timestamp, signature string) bool {
 
 func checkPermission(timestamp, signature string, body []byte) (int, bool) {
 
-	if checkSignature(body, timestamp, signature) == false {
-		return NO_AUTH, false
-	}
+	// modify by hyb  cancel checkPermission
+	//if checkSignature(body, timestamp, signature) == false {
+	//	return NO_AUTH, false
+	//}
 	return OK, true
 }