y-Web: supplement to commit 68cee82

This commit is contained in:
GetAway
2020-07-05 23:41:05 +02:00
parent 68cee82a21
commit 1103ca3b43

View File

@@ -105,6 +105,8 @@ bool ySplitString(std::string str, std::string delimiter, std::string& left,
replace(left, "\n", "");
replace(right, "\r\n", "");
replace(right, "\n", "");
left = trim(left);
right = trim(right);
return (pos != std::string::npos);
}
//-------------------------------------------------------------------------