Skip to content
Snippets Groups Projects
Commit 10f2d733 authored by ko_oler's avatar ko_oler
Browse files

fix

parent 2991095d
No related branches found
No related tags found
No related merge requests found
......@@ -155,7 +155,11 @@ func (s *Extension) Uninstall(ctx context.Context, in *extension.UninstallReques
}
func (s *Extension) Action(ctx context.Context, in *extension.ActionRequest) (*extension.ActionResponse, error) {
ok, err := extension.CheckInstalled(ctx, s.Content, in.SpaceId, in.EnvId, in.Extension)
parsed, err := extension.ParseActionURL(in.Action)
if err != nil {
return nil, err
}
ok, err := extension.CheckInstalled(ctx, s.Content, in.SpaceId, in.EnvId, parsed.GetExtensionID())
if err != nil {
return nil, errors.Wrap(err, "check extension installed")
}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment