We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 109a677 commit 00fa8c7Copy full SHA for 00fa8c7
jas/analyzermanager.go
@@ -230,9 +230,9 @@ func DownloadAnalyzerManagerIfNeeded(threadId int) error {
230
return err
231
}
232
log.Info("sha2 value of checksumFilePath: " + string(sha2))
233
- log.Info("sha2 value of emoteFileDetails.Checksum.Sha256: " + string(remoteFileDetails.Checksum.Sha256))
+ log.Info("sha2 value of remoteFileDetails.Checksum.Sha256: " + string(remoteFileDetails.Checksum.Sha256))
234
// If the checksums are identical, there's no need to download.
235
- if remoteFileDetails.Checksum.Sha256 == string(sha2) {
+ if strings.TrimSpace(remoteFileDetails.Checksum.Sha256) == strings.TrimSpace(string(sha2)) {
236
return nil
237
238
0 commit comments