knadh / otpgateway

Standalone server for user address and OTP verification flows with pluggable providers (e-mail, SMS, bank penny drops etc.)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Optimization at converting bytes.Buffer to string.

shastri17 opened this issue · comments

On main/handler.go, line number 608, instead of string(subj.Bytes()) to subj.String(). No need to convert to Byte and then convert back to a string.

Good spot. Fixed e2cd0df.