parent
b584ddf4d4
commit
0179f88b30
|
@ -48,6 +48,7 @@ namespace BirdsiteLive.Controllers
|
|||
[Route("/users/{id}")]
|
||||
public IActionResult Index(string id)
|
||||
{
|
||||
id = id.Trim(new[] {' ', '@'});
|
||||
var user = _twitterService.GetUser(id);
|
||||
|
||||
var r = Request.Headers["Accept"].First();
|
||||
|
|
|
@ -33,5 +33,5 @@
|
|||
<br />
|
||||
<p>Search this handle to find it in your instance:</p>
|
||||
|
||||
<input type="text" name="textbox" value=" @ViewData.Model.InstanceHandle" onclick="this.select()" class="form-control" readonly/>
|
||||
<input type="text" name="textbox" value="@ViewData.Model.InstanceHandle" onclick="this.select()" class="form-control" readonly/>
|
||||
</div>
|
Loading…
Reference in New Issue