This commit is contained in:
Nicolas Constant 2022-12-13 23:48:14 -05:00
parent 2e5bb28ff8
commit 9a6971c6bc
No known key found for this signature in database
GPG Key ID: 1E9F677FB01A5688
1 changed files with 2 additions and 2 deletions

View File

@ -40,13 +40,13 @@
else if (ViewData.Model.Deleted)
{
<div class="alert alert-danger" role="alert">
This account has been deleted by it's Twitter owner.
This account has been deleted by its Twitter owner.
</div>
}
else if (!string.IsNullOrEmpty(ViewData.Model.MovedTo))
{
<div class="alert alert-danger" role="alert">
This account has been migrated by it's Twitter owner and has be disabled.<br/>
This account has been migrated by its Twitter owner and has been disabled.<br/>
You can follow this user at <a href="@ViewData.Model.MovedTo">@ViewData.Model.MovedToAcct</a>.
</div>
}