fix: Page no longer Errors when accessing a nonexistent thread
Signed-off-by: limited_dev <loginakkisativ@gmail.com>
This commit is contained in:
parent
2fa9ca826e
commit
508510962a
1 changed files with 12 additions and 12 deletions
|
@ -19,6 +19,7 @@
|
|||
</div>
|
||||
|
||||
@code {
|
||||
|
||||
[Parameter]
|
||||
[Required]
|
||||
public string boardName { get; set; }
|
||||
|
@ -31,18 +32,17 @@
|
|||
|
||||
protected override async Task OnInitializedAsync()
|
||||
{
|
||||
try
|
||||
{
|
||||
post = await PostsRepository.getPostByIdAsync(int.Parse(threadId));
|
||||
}
|
||||
catch (FormatException fe)
|
||||
{
|
||||
if (!int.TryParse(threadId, out _))
|
||||
NavigationManager.NavigateTo("/notfound");
|
||||
return;
|
||||
}
|
||||
if(post.Board != boardName)
|
||||
post = await PostsRepository.getPostByIdAsync(int.Parse(threadId));
|
||||
|
||||
if (post == null)
|
||||
NavigationManager.NavigateTo("/notfound");
|
||||
if(post == null)
|
||||
|
||||
if (post.Board != boardName)
|
||||
NavigationManager.NavigateTo("/notfound");
|
||||
if (post == null)
|
||||
NavigationManager.NavigateTo("/notfound");
|
||||
}
|
||||
|
||||
}
|
Loading…
Reference in a new issue