From af652a15bad431ef9ab795302c8dec22212caf86 Mon Sep 17 00:00:00 2001 From: Marcel Klehr Date: Thu, 18 Jun 2026 12:47:57 +0200 Subject: [PATCH] fix(talk): Add NOTE_TO_SELF conversation type Signed-off-by: Marcel Klehr --- nc_py_api/talk.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/nc_py_api/talk.py b/nc_py_api/talk.py index 73f997b1..aaec39c5 100644 --- a/nc_py_api/talk.py +++ b/nc_py_api/talk.py @@ -23,6 +23,8 @@ class ConversationType(enum.IntEnum): """Former "One to one" (When a user is deleted from the server or removed from all their conversations, "One to one" rooms are converted to this type)""" + NOTE_TO_SELF = 6 + """Conversation for notes to self""" class ParticipantType(enum.IntEnum):