diff options
| -rw-r--r-- | src/Utilities.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
| diff --git a/src/Utilities.cpp b/src/Utilities.cpp index 8b0ca94..9733c30 100644 --- a/src/Utilities.cpp +++ b/src/Utilities.cpp @@ -121,7 +121,7 @@ void splitString(std::vector<std::string> &items, const std::string& s,  	size_t current = 0;  	size_t next;  	do { -		next = s.find_first_of(",;", current); +		next = s.find_first_of(delim, current);  		items.push_back(s.substr(current, next - current));  		current = next + 1;  	} while (next != std::string::npos); | 
