RE: Suggestions for the search menu in steemit, when typed in the user name if it corresponds directly to the profile

You are viewing a single comment's thread from:

Suggestions for the search menu in steemit, when typed in the user name if it corresponds directly to the profile

in utopian-io •  7 years ago 

The search engine is made using Google's API, so it would only search for posts. This could be made possible with a simple if statemnt in JavaScript. Here is a PoC:

if(userExists){
//Redirect to user's page
}else{
//perform google API search
}

I can surely implement this feature. Is the code for steemit public? If it is, I can submit a Pull Request.

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!
Sort Order:  

wow, your analysis is very good, I am just an ordinary user who does not understand about programming and I only give steemit suggestions on the few complaints I feel. thanks.

I will submit a Pull Request to https://github.com/steemit/condenser to make this happen