-
-
Notifications
You must be signed in to change notification settings - Fork 624
Open
Labels
O-UncommonMost users are unlikely to come across this or unexpected workflowMost users are unlikely to come across this or unexpected workflowS-MinorImpairs non-critical functionality or suitable workarounds existImpairs non-critical functionality or suitable workarounds existT-Defect
Description
It might just be the wording of the errormessage, but when you create an eventTimelineSet by hand, you have to set timelineSupport specifically in the options when creating, and not as the error message below would suggest, in the MatrixClient you supply to the function.
matrix-js-sdk/src/models/event-timeline-set.ts
Lines 358 to 364 in f9be1bf
if (!this.timelineSupport) { | |
throw new Error( | |
"timeline support is disabled. Set the 'timelineSupport'" + | |
" parameter to true when creating MatrixClient to enable" + | |
" it.", | |
); | |
} |
Metadata
Metadata
Assignees
Labels
O-UncommonMost users are unlikely to come across this or unexpected workflowMost users are unlikely to come across this or unexpected workflowS-MinorImpairs non-critical functionality or suitable workarounds existImpairs non-critical functionality or suitable workarounds existT-Defect