[frontend/timeline] Make clicking renoted notes open the renoted note

This commit is contained in:
Lilian 2024-05-21 22:19:00 +02:00
parent 0c6de9bb2c
commit e747a34049
No known key found for this signature in database
GPG key ID: 007CA12D692829E1

View file

@ -9,6 +9,6 @@
private void OpenNote()
{
Navigation.NavigateTo($"/notes/{Note.Id}");
Navigation.NavigateTo(Note.RenoteId != null ? $"/notes/{Note.RenoteId}" : $"/notes/{Note.Id}");
}
}