mirror of
				https://github.com/tiny-craft/tiny-rdm.git
				synced 2025-10-31 18:42:33 +08:00 
			
		
		
		
	chore: refine ui details
This commit is contained in:
		| @@ -109,7 +109,7 @@ func autoDecode(str string) (value, resultDecode string) { | ||||
| 		// pure digit content may incorrect regard as some encoded type, skip decode | ||||
| 		if match, _ := regexp.MatchString(`^\d+$`, str); !match { | ||||
| 			var ok bool | ||||
| 			if len(str)%4 == 0 && !isSameChar(str) { | ||||
| 			if len(str)%4 == 0 && len(str) >= 12 && !isSameChar(str) { | ||||
| 				if value, ok = decodeBase64(str); ok { | ||||
| 					resultDecode = types.DECODE_BASE64 | ||||
| 					return | ||||
|   | ||||
		Reference in New Issue
	
	Block a user
	 Lykin
					Lykin