Первая версия (CLI-only) #1

Merged
weirdcat merged 26 commits from develop into main 2025-11-27 13:09:27 +03:00
Showing only changes of commit cc73978637 - Show all commits

View File

@@ -74,7 +74,7 @@ func (v *visionImpl) AnalyzeImage(filePath string) (data VisionData, err error)
reader := qrcode.NewQRCodeReader()
result, err := reader.Decode(bmp, nil)
if err != nil {
v.log.Debug("no qr code found in image", "filePath", filePath, "error", err)
v.log.Debug("no qr code found in image", "filePath", filePath)
return VisionData{}, nil
}