-
Notifications
You must be signed in to change notification settings - Fork 817
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fetch "shared with me" information separately #7744
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
just a nitpick
fe6439b
to
06d904a
Compare
took some time to figure out why the tests broke... decided to introduce proper signal/slots for this |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
going to back to previous comment
06d904a
to
b1066a2
Compare
AppImage file: nextcloud-PR-7744-b1066a2b592942b188f15418406a4711517df984-x86_64.AppImage |
b1066a2
to
58cf0bd
Compare
58cf0bd
to
5f2ea39
Compare
if the parameter `shared_with_me` is set to `"true"` on the shares API call the response will only include that and not return any other sharing information. therefore let's fetch it inside another job (this is also how the web client does it). Signed-off-by: Jyrki Gadinger <[email protected]>
5f2ea39
to
269378e
Compare
Artifact containing the AppImage: nextcloud-appimage-pr-7744.zip SHA256 checksum: To test this change/fix you can download the above artifact file, unzip it, and run it. Please make sure to quit your existing Nextcloud app and backup your data. |
|
If the parameter
shared_with_me
is set to"true"
on the shares API call the response will only include that and not return any other sharing information. therefore let's fetch it inside another job (this is also how the web client does it).Fixes #7734.