trim spaces from search value added

add_selenium_testing
moneroexamples 8 years ago
parent dcd2c790d6
commit 356e97f411

@ -859,8 +859,10 @@ namespace xmreg {
}
string
search(const string& search_text)
search(string search_text)
{
// remove white characters
boost::trim(search_text);
string result_html {"No such thing found: " + search_text};
@ -869,7 +871,6 @@ namespace xmreg {
if (search_text.size() < 12)
{
result_html = show_block(boost::lexical_cast<uint64_t>(search_text));
}
// nasty check if output is "Cant get" as a sign of
// a not found tx. Later need to think of something better.
@ -877,6 +878,7 @@ namespace xmreg {
{
return result_html;
}
}
// second let try searching for tx
result_html = show_tx(search_text);

Loading…
Cancel
Save