🐛 Fixed language string return

This commit is contained in:
Maxim Lebedev 2024-01-22 12:43:09 +06:00
parent 5adcb66862
commit 665af5ebfc
Signed by: toby3d
GPG Key ID: 1F14E25B7C119FC5
1 changed files with 1 additions and 1 deletions

View File

@ -58,7 +58,7 @@ func (l Language) Name() string {
}
func (l Language) String() string {
if l.code == "" {
if l.code != "" {
return l.code
}