From 7f381b097cb4159c1076b2d5ab2cb7f9c6ff19d2 Mon Sep 17 00:00:00 2001 From: skheyfets-asapp <108540025+skheyfets-asapp@users.noreply.github.com> Date: Fri, 13 Dec 2024 11:56:49 -0500 Subject: [PATCH] Fix comment typo Co-authored-by: lukasIO --- encryption.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/encryption.go b/encryption.go index 103db07..93ddb56 100644 --- a/encryption.go +++ b/encryption.go @@ -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 }