filters/actions: Pass manager to filters/actions

Change-Id: Iaf70fdd5c8cdb64237bbd1bb5f73add645fededb
Signed-off-by: Brad Bishop <bradleyb@fuzziesquirrel.com>
diff --git a/manager.cpp b/manager.cpp
index 8e185ac..6c15bf0 100644
--- a/manager.cpp
+++ b/manager.cpp
@@ -155,8 +155,8 @@
     auto &filter = std::get<1>(args);
     auto &action = std::get<2>(args);
 
-    if(filter(msg)) {
-        action();
+    if(filter(msg, *this)) {
+        action(*this);
     }
 }