commit
f71fe04330
3 changed files with 3 additions and 2 deletions
|
@ -4,7 +4,7 @@
|
|||
<TargetFramework>netcoreapp3.1</TargetFramework>
|
||||
<UserSecretsId>d21486de-a812-47eb-a419-05682bb68856</UserSecretsId>
|
||||
<DockerDefaultTargetOS>Linux</DockerDefaultTargetOS>
|
||||
<Version>0.3.0</Version>
|
||||
<Version>0.3.1</Version>
|
||||
</PropertyGroup>
|
||||
|
||||
<ItemGroup>
|
||||
|
|
|
@ -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>
|
Reference in a new issue