fix: allow updating thread title

This commit is contained in:
2025-12-17 11:59:00 +02:00
parent a7c10f2e0c
commit 4b08dad606

View File

@@ -1051,7 +1051,7 @@ export default defineComponent({
this.isSavingTitle = true
try {
const response = await ocs.put(`/threads/${this.thread.id}/title`, {
const response = await ocs.put(`/threads/${this.thread.id}`, {
title: this.editedTitle.trim(),
})