diff options
Diffstat (limited to 'internal/pushrules/util.go')
-rw-r--r-- | internal/pushrules/util.go | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/internal/pushrules/util.go b/internal/pushrules/util.go index de8fe5cd..e2821b57 100644 --- a/internal/pushrules/util.go +++ b/internal/pushrules/util.go @@ -16,10 +16,7 @@ func ActionsToTweaks(as []*Action) (ActionKind, map[string]interface{}, error) { for _, a := range as { switch a.Kind { - case DontNotifyAction: - // Don't bother processing any further - return DontNotifyAction, nil, nil - + case DontNotifyAction: // Ignored case SetTweakAction: if tweaks == nil { tweaks = map[string]interface{}{} |