diff --git a/src/app/features/room/jump-to-time/JumpToTime.tsx b/src/app/features/room/jump-to-time/JumpToTime.tsx index f6e6f188a..894b6bc4d 100644 --- a/src/app/features/room/jump-to-time/JumpToTime.tsx +++ b/src/app/features/room/jump-to-time/JumpToTime.tsx @@ -234,7 +234,9 @@ export function JumpToTime({ onCancel, onSubmit }: JumpToTimeProps) { {timestampState.status === AsyncStatus.Error && ( - {timestampState.error.message} + {timestampState.error.errcode === 'M_UNRECOGNIZED' + ? "Your homeserver doesn't support jumping to a date or time (MSC3030)." + : timestampState.error.message} )}