👔 Set Site DefaultLanguage as Language for monolingual sites

This commit is contained in:
Maxim Lebedev 2023-11-13 08:48:20 +06:00
parent 2558a14d8c
commit d623d3a60f
Signed by: toby3d
GPG Key ID: 1F14E25B7C119FC5
1 changed files with 4 additions and 0 deletions

View File

@ -33,6 +33,10 @@ func (ucase *siteUseCase) Do(ctx context.Context, lang domain.Language) (*domain
}
}
if !out.IsMultiLingual() {
out.Language = out.DefaultLanguage
}
sub, err := ucase.sites.Get(ctx, lang)
if err != nil {
return out, nil