fix(geplante-nachrichten): use getAllConversations in getRooms to return full room list instead of top 3

This commit is contained in:
Matthias Hochmeister
2026-04-17 12:47:13 +02:00
parent 169d045e4c
commit 68e4ed265f

View File

@@ -315,7 +315,7 @@ async function getRooms(): Promise<RoomsResult> {
return { configured: false };
}
try {
const { conversations } = await nextcloudService.getConversations(creds.username, creds.appPassword);
const conversations = await nextcloudService.getAllConversations(creds.username, creds.appPassword);
return {
configured: true,
data: conversations.map(c => ({