WIP: More advanced action parsing

This commit is contained in:
Philipp Heckel 2022-04-26 23:07:31 -04:00
parent 53646737e8
commit 574e72a974
3 changed files with 235 additions and 1 deletions

View file

@ -54,7 +54,7 @@ func parseActions(s string) (actions []*action, err error) {
if strings.HasPrefix(s, "[") {
actions, err = parseActionsFromJSON(s)
} else {
actions, err = parseActionsFromSimple(s)
actions, err = parseActionsFromSimpleNew(s)
}
if err != nil {
return nil, err