Skip to content

Commit

Permalink
Small bugfix
Browse files Browse the repository at this point in the history
  • Loading branch information
max197616 committed Apr 17, 2019
1 parent 2ff1242 commit aba3f3d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/cmdlinetask.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -746,7 +746,7 @@ static void cmd_showfilter_parsed(void* parsed_result, struct cmdline* cl, void*
if(found != std::string::npos)
{
host = uri.substr(0, found);
url = uri.substr(found + 1);
url = uri.substr(found);
} else {
host = uri;
url.assign("/");
Expand Down

0 comments on commit aba3f3d

Please sign in to comment.