Skip to content

Commit

Permalink
Bugfix for shared...
Browse files Browse the repository at this point in the history
  • Loading branch information
frikky committed Mar 21, 2024
1 parent 593ace3 commit d21f66c
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions shared.go
Original file line number Diff line number Diff line change
Expand Up @@ -5935,10 +5935,7 @@ func SaveWorkflow(resp http.ResponseWriter, request *http.Request) {


// Some internal reserves
if (
(strings.ToLower(action.Name) == "send_sms_shuffle" || strings.ToLower(action.Name) == "send_email_shuffle") && param.Name == "apikey") || (action.Name == "repeat_back_to_me") ||
(action.Name == "filter_list" && param.Name == "field")
{
if ((strings.ToLower(action.Name) == "send_sms_shuffle" || strings.ToLower(action.Name) == "send_email_shuffle") && param.Name == "apikey") || (action.Name == "repeat_back_to_me") || (action.Name == "filter_list" && param.Name == "field") {
// Do nothing
} else {
thisError := fmt.Sprintf("Action %s is missing required parameter %s", action.Label, param.Name)
Expand Down

0 comments on commit d21f66c

Please sign in to comment.