Skip to content

Commit

Permalink
changed display order of migration info
Browse files Browse the repository at this point in the history
  • Loading branch information
NicolasConstant committed Dec 29, 2022
1 parent cc37ed3 commit f489e03
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions src/BirdsiteLive/Views/Users/Index.cshtml
Original file line number Diff line number Diff line change
Expand Up @@ -31,13 +31,7 @@
<br />
<br />

@if (ViewData.Model.Protected)
{
<div class="alert alert-danger" role="alert">
This account is protected, BirdsiteLIVE cannot fetch their tweets and will not provide follow support until it is unprotected again.
</div>
}
else if (ViewData.Model.Deleted)
@if (ViewData.Model.Deleted)
{
<div class="alert alert-danger" role="alert">
This mirror has been deleted by its Twitter owner.
Expand All @@ -50,6 +44,12 @@
You can follow this user at <a href="@ViewData.Model.MovedTo">@ViewData.Model.MovedToAcct</a>.
</div>
}
else if (ViewData.Model.Protected)
{
<div class="alert alert-danger" role="alert">
This account is protected, BirdsiteLIVE cannot fetch their tweets and will not provide follow support until it is unprotected again.
</div>
}
else
{
<div>
Expand Down

0 comments on commit f489e03

Please sign in to comment.