notify: fix tokenizing being too strict

This commit is contained in:
moneromooo-monero 2019-02-06 17:48:08 +00:00
parent 0ac22d0e1c
commit fb0dbab934
No known key found for this signature in database
GPG key ID: 686F07454D6CEFC3

View file

@ -45,7 +45,7 @@ Notify::Notify(const char *spec)
{ {
CHECK_AND_ASSERT_THROW_MES(spec, "Null spec"); CHECK_AND_ASSERT_THROW_MES(spec, "Null spec");
boost::split(args, spec, boost::is_any_of(" ")); boost::split(args, spec, boost::is_any_of(" \t"), boost::token_compress_on);
CHECK_AND_ASSERT_THROW_MES(args.size() > 0, "Failed to parse spec"); CHECK_AND_ASSERT_THROW_MES(args.size() > 0, "Failed to parse spec");
filename = args[0]; filename = args[0];
CHECK_AND_ASSERT_THROW_MES(epee::file_io_utils::is_file_exist(filename), "File not found: " << filename); CHECK_AND_ASSERT_THROW_MES(epee::file_io_utils::is_file_exist(filename), "File not found: " << filename);