diff --git a/src/components/status/status.js b/src/components/status/status.js index 8230b0917..d807b64ff 100644 --- a/src/components/status/status.js +++ b/src/components/status/status.js @@ -432,13 +432,13 @@ const Status = { return useInstanceCapabilitiesStore().editingAvailable }, quoteId() { - return this.mainStatus.quote_id + return this.status.quote_id }, quoteUrl() { - return this.mainStatus.quote_url + return this.status.quote_url }, quoteVisible() { - return this.mainStatus.quote_visible + return this.status.quote_visible }, quoteExpanded() { return !this.inQuote diff --git a/src/stores/timelines.js b/src/stores/timelines.js index 34fc57f79..df1c41a69 100644 --- a/src/stores/timelines.js +++ b/src/stores/timelines.js @@ -149,16 +149,6 @@ export const useTimelinesStore = defineStore('timelines', { this[timelineName] = emptyTl(timelineName) }, - clearTimeline(timelineName) { - const timeline = this[timelineName] - - timeline.order = [] - timeline.statusIds = new Set() - timeline.visibleStatusIds = new Set() - timeline.newStatusCount = 0 - timeline.maxId = '' - timeline.minId = '' - }, activatePersistents() { TIMELINES.forEach((name) => { if (this[name].persistent) {