From 175027fb6c036956a2fbd6ed4864b99fb31c6583 Mon Sep 17 00:00:00 2001 From: Len Ovens Date: Wed, 15 Mar 2017 09:20:42 -0700 Subject: OSC amend access_action with action in line to ignore if param is 0 --- libs/surfaces/osc/osc.cc | 8 +++++--- 1 file changed, 5 insertions(+), 3 deletions(-) (limited to 'libs/surfaces/osc/osc.cc') diff --git a/libs/surfaces/osc/osc.cc b/libs/surfaces/osc/osc.cc index 20bf44997f..3f5721b0d3 100644 --- a/libs/surfaces/osc/osc.cc +++ b/libs/surfaces/osc/osc.cc @@ -868,10 +868,12 @@ OSC::catchall (const char *path, const char* types, lo_arg **argv, int argc, lo_ ret = 0; } else if (!strncmp (path, "/access_action/", 15)) { - std::string action_path = path; + if (!(argc && !argv[0]->i)) { + std::string action_path = path; - access_action (action_path.substr(15)); - std::cout << "access_action path = " << action_path.substr(15) << "\n"; + access_action (action_path.substr(15)); + std::cout << "access_action path = " << action_path.substr(15) << "\n"; + } ret = 0; } else -- cgit v1.2.3