Hi, I have this case:
User A shares a folder to User B with edit rights and B didn't accept the shared folder yet.
In my application A opens the file from the shared folder, and provides the fileId to User B, assuming the B should have the access rights for that file.
`sharing/get_file_metadata` performed by User B returns
"access_type": {
".tag": "editor"
},
so User B is assuming he has edit rights for the file as well. However, User B is not allowed to even download the file (download file rq return 404 not found).
Is there any way how to detect User B haven't accepted the shared folder, so he doesn't have the access rights for the file yet? Or, could it a bug, as the get_file_metadata seems to return misleading information?