From 02488b5f5a6b29ed018547caaf8df4bb6529289c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Juan=20Pablo=20Villaf=C3=A1=C3=B1ez?= Date: Mon, 18 Nov 2024 12:01:41 +0100 Subject: [PATCH] chore: add changelog entry --- changelog/unreleased/collaboration-public-keys.md | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 changelog/unreleased/collaboration-public-keys.md diff --git a/changelog/unreleased/collaboration-public-keys.md b/changelog/unreleased/collaboration-public-keys.md new file mode 100644 index 0000000000..033883542b --- /dev/null +++ b/changelog/unreleased/collaboration-public-keys.md @@ -0,0 +1,11 @@ +Bugfix: Return an error if we can't get the keys and ensure they're cached + +Previously, there was an issue where we could get an error while getting the +public keys from the /hosting/discovery endpoint but we're returning a wrong +success value instead. This is fixed now and we're returning the error. + +In addition, the public keys weren't being cached, so we hit the +/hosting/discovery endpoint every time we need to use the public keys. The keys +are now cached so we don't need to hit the endpoint more than what we need. + +https://github.com/owncloud/ocis/pull/10590