Merge remote-tracking branch 'origin/master'

This commit is contained in:
M_Kececi
2026-06-23 18:12:52 +03:00
parent 750444b9c8
commit f6cf6bb4cc
2 changed files with 16 additions and 1 deletions

View File

@@ -104,7 +104,8 @@ func productSeriesFallbackAutoCreateEnabled() bool {
func productSeriesFallbackCode() string {
code := strings.TrimSpace(os.Getenv("PRODUCT_SERIES_FALLBACK_SERIES_CODE"))
if code == "" {
code = "1-"
// In this installation, the default series code is "1" (not "1-").
code = "1"
}
return code
}