mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-12-02 06:41:18 +00:00
Fix nil pointer issue with config-service (#953)
This commit is contained in:
parent
0426f7c5d0
commit
a561058fee
1 changed files with 1 additions and 1 deletions
|
@ -476,7 +476,7 @@ func PostBuild(c *gin.Context) {
|
||||||
}
|
}
|
||||||
|
|
||||||
// If config extension is active we should refetch the config in case something changed
|
// If config extension is active we should refetch the config in case something changed
|
||||||
if server.Config.Services.ConfigService.IsConfigured() {
|
if server.Config.Services.ConfigService != nil && server.Config.Services.ConfigService.IsConfigured() {
|
||||||
currentFileMeta := make([]*remote.FileMeta, len(configs))
|
currentFileMeta := make([]*remote.FileMeta, len(configs))
|
||||||
for i, cfg := range configs {
|
for i, cfg := range configs {
|
||||||
currentFileMeta[i] = &remote.FileMeta{Name: cfg.Name, Data: cfg.Data}
|
currentFileMeta[i] = &remote.FileMeta{Name: cfg.Name, Data: cfg.Data}
|
||||||
|
|
Loading…
Reference in a new issue