+
+ {{ i18n.ts.showRepliesToOthersInTimelineAll }}
+ {{ i18n.ts.hideRepliesToOthersInTimelineAll }}
+
+
@@ -138,6 +145,15 @@ async function reloadAsk() {
unisonReload();
}
+async function updateRepliesAll(withReplies: boolean) {
+ const { canceled } = os.confirm({
+ type: 'warning',
+ text: withReplies ? i18n.ts.confirmShowRepliesAll : i18n.ts.confirmHideRepliesAll,
+ });
+ if (canceled) return;
+ await os.api('following/update-all', { withReplies });
+}
+
watch([
enableCondensedLineForAcct,
], async () => {