Skip to content

Commit

Permalink
Fix comment typo
Browse files Browse the repository at this point in the history
Co-authored-by: lukasIO <[email protected]>
  • Loading branch information
skheyfets-asapp and lukasIO authored Dec 13, 2024
1 parent cf8b1e2 commit 7f381b0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion encryption.go
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ func DecryptGCMAudioSample(sample, key, sifTrailer []byte) ([]byte, error) {
if sifTrailer != nil && len(sample) >= len(sifTrailer) {
possibleTrailer := sample[len(sample)-len(sifTrailer):]
if bytes.Equal(possibleTrailer, sifTrailer) {
// this is unencrypted Server Injected Frame (SIF) thas should be dropped
// this is unencrypted Server Injected Frame (SIF) that should be dropped
return nil, nil
}

Expand Down

0 comments on commit 7f381b0

Please sign in to comment.