fix: relax regex to extract udid from plist

This commit is contained in:
鲁树人
2025-09-09 22:24:16 +09:00
parent 6ec434f6b1
commit b1aa3bacdf
2 changed files with 6 additions and 1 deletions

View File

@@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
## [Unreleased] ## [Unreleased]
## [v0.2.16] - 2025-09-09
### Changed
- Update RegEx used to extract UDID in plist.
## [v0.2.15] - 2025-09-09 ## [v0.2.15] - 2025-09-09
### Added ### Added

View File

@@ -14,7 +14,7 @@ import (
"go.uber.org/zap" "go.uber.org/zap"
) )
var _RE_UDID_V10 = regexp.MustCompile(`_\x10\(([0-9a-f]{40})_`) var _RE_UDID_V10 = regexp.MustCompile(`_\x10\(([0-9a-f]{40}`)
type QQMusicMacV10 struct { type QQMusicMacV10 struct {
logger *zap.Logger logger *zap.Logger