Skip to content

Commit

Permalink
fix
Browse files Browse the repository at this point in the history
  • Loading branch information
Skandalik committed Oct 10, 2024
1 parent 18298b9 commit 33853af
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion gdpr/protect_device_id.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@ func ProtectDeviceID(val string) string {
r := []rune(val)
l := len(r)

// If someone passes string with less than 2 characters, we don't protect it.
// If someone passes string with less than 2 characters, protect everything.
c := 2
if l < 2 {
c = l
Expand Down

0 comments on commit 33853af

Please sign in to comment.