diff options
-rw-r--r-- | awall/modules/filter.lua | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/awall/modules/filter.lua b/awall/modules/filter.lua index 82774cd..7146479 100644 --- a/awall/modules/filter.lua +++ b/awall/modules/filter.lua @@ -177,7 +177,8 @@ function Filter:limit() end function Filter:position() - return self:limit() == 'flow-limit' and 'prepend' or 'append' + return not self['no-track'] and self:limit() == 'flow-limit' + and 'prepend' or 'append' end function Filter:actiontarget() |