aboutsummaryrefslogtreecommitdiff
path: root/src/FbTk/Timer.cc
diff options
context:
space:
mode:
Diffstat (limited to 'src/FbTk/Timer.cc')
-rw-r--r--src/FbTk/Timer.cc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/FbTk/Timer.cc b/src/FbTk/Timer.cc
index a8c1c14..385b342 100644
--- a/src/FbTk/Timer.cc
+++ b/src/FbTk/Timer.cc
@@ -251,7 +251,8 @@ Command<void> *DelayedCmd::parse(const std::string &command,
251 const std::string &args, bool trusted) { 251 const std::string &args, bool trusted) {
252 252
253 std::string cmd_str; 253 std::string cmd_str;
254 int err = StringUtil::getStringBetween(cmd_str, args.c_str(), '{', '}'); 254 int err = StringUtil::getStringBetween(cmd_str, args.c_str(), '{', '}',
255 " \t\n", true);
255 if (err == 0) 256 if (err == 0)
256 return 0; 257 return 0;
257 258