Ignore unused error

This commit is contained in:
2025-05-08 14:28:36 +00:00
parent eda92fccdd
commit e8403315a8
+1 -1
View File
@@ -21,7 +21,7 @@ func RunSanityCheck(path string, passphrase []byte) error {
if err != nil {
return errors.New("Failed to read sanity check file (" + path + ")")
}
decBytes, err := Decrypt(encBytes, passphrase)
decBytes, _ := Decrypt(encBytes, passphrase)
if string(decBytes) == "thx4usin'rcw" {
return nil
}