2
0
mirror of https://github.com/acepanel/panel.git synced 2026-02-04 19:37:18 +08:00

workflow: fix download frontend

This commit is contained in:
耗子
2024-10-11 00:58:21 +08:00
parent 6cfb7f4e0b
commit 87d26fbb23
5 changed files with 5 additions and 4 deletions

View File

@@ -126,7 +126,7 @@ func (r *settingRepo) UpdatePanelSetting(ctx context.Context, setting *request.P
if err != nil {
return false, err
}
if err = yaml.UnmarshalWithOptions([]byte(raw), &config, yaml.CommentToMap(cm)); err != nil {
if err = yaml.UnmarshalWithOptions([]byte(raw), config, yaml.CommentToMap(cm)); err != nil {
return false, err
}