If you click on recent files in the left side bar you should see your recent changed files. This works on my private instance but on cloud.nc.com I only see an empty page.
GitMate.io thinks possibly related issues are https://github.com/nextcloud/server/issues/4644 (Jumping to file directly is not working), https://github.com/nextcloud/server/issues/5876 ("Allow editing" on a file doesn't work), https://github.com/nextcloud/server/issues/7398 (Horizontal scaling - file locking not working?), https://github.com/nextcloud/server/issues/3488 (File Upload works but can't upload folder), and https://github.com/nextcloud/server/issues/6429 (Locked file).
cc @rullzer @nickvergessen @skjnldsv
Here the same with Nextcloud 14.0.2. I only see an empty page on recent files.
Same here:
This request:
/apps/files/api/v1/recent
Just returns nothing:
{"files":[]}
This is how it should look like:
{"files":[{"id":"135","parentId":"2","mtime":1539855850000,"name":"Bildschirmfoto...
Or it should have a decent empty screen:

Are there groupfolders active for the users/instances it doesn't work?
I also encountered this one a while ago, but for me it only happens for users which have access to a groupfolder. See nextcloud/groupfolders#124
Are there groupfolders active for the users/instances it doesn't work?
On the instance of @karlitschek it isn't.
yep. no groupfolders here
Hi,
I just stumbled across this issue and can confirm it happens on NC15 still. However, I noticed something strange and wonder if the root cause of this issue might be a wrong time range for "recent":

... the future.
Of course, I don't know why this file will be edited on May 12th in 2034 at 12:15 first, but it seems to be listed due to this fact ;)
We just looked into this and the reason for this behavior is that shared folders are not fetched for the "recent files" view:
It only fetches from real storages with a storage ID that stored in the file cache, but shares are only virtual mount points into the user folder and thus it will not fetch the recent files from them properly.
cc @icewind1991 @rullzer Any clever idea how to also include those subfolders or single files of storages in the SQL query or should we inject them separately somehow?
So. it seems we have code duplication here I think. because we could just use the cache searching. There shared folders work. (it is the thing we use for the dav searches as well). It is not the most effective code but good enough for now I'd say.
I have a similar issue with "recent" files, the file list is completely empty although i have numerous files uploaded/updated today.

Running NextCloud 15.0.2 with PHP 7.2 and local storage only.
Fix is in #14185
Most helpful comment
So. it seems we have code duplication here I think. because we could just use the cache searching. There shared folders work. (it is the thing we use for the dav searches as well). It is not the most effective code but good enough for now I'd say.