Skip to content

Commit

Permalink
Added missing createAction for IfAllowNoneAction
Browse files Browse the repository at this point in the history
  • Loading branch information
dkgof committed Sep 16, 2022
1 parent 7eb9fb7 commit 4a70b3c
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions Extension/Action.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ class Action {
case "close": return new CloseAction(config, cmp);
case "wait": return new WaitAction(config, cmp);
case "ifallowall": return new IfAllowAllAction(config, cmp);
case "ifallownone": return new IfAllowNoneAction(config, cmp);
case "runrooted": return new RunRootedAction(config, cmp);
case "runmethod": return new RunMethodAction(config, cmp);
default: throw "Unknown action type: " + config.type;
Expand Down

0 comments on commit 4a70b3c

Please sign in to comment.