Julius Knorr
Julius Knorr
When talking with Ferdinand during the performance hackweek he mentioned that playwright is very nice and they actually support multiple tabs which is something we lack in cypress. We could...
With https://github.com/nextcloud/text/pull/5930 reducing the polling interval we should improve this further in the future. My current idea is to add the read only state of a session to the db...
I noticed that when opening a markdown file or office document the file will first get downloaded before the webview with the online editing through the direct editing API gets...
There are queries that get executed regularly on share removal which do not use an index: https://github.com/nextcloud/photos/blob/c77b9046a17509ec166186f64e0dee934ddc3e9c/lib/Album/AlbumMapper.php#L320 Adding a combined index for owner, file_id should solve this
The following query does not seem ot use an index and do a full table scan on the albums table: https://github.com/nextcloud/photos/blob/2376b7d81d102272917fec65a4a933a07c3136e0/lib/Album/AlbumMapper.php#L138-L146 From a brief look it should be possible to...
Currently it is required to manually run occ richdocuments:update-empty-templates but we should instead just have a migration step. However this needs to be handled with some care as there is...
While testing a PR i noticed error logging is quite odd with just the message being logged without an exception trace. Mostly moving from warning to error for 500 status...
We should add SPDX headers and license information to be able to verify reuse compliance. Examples can be found in other apps like text. Useful script: https://github.com/nextcloud/github_helper/tree/master/spdx-convertor
The app navigation has a few small quirks with the new UI adjustments: - [ ] The counter (3 rows) is cut off, we should probably just use the number...
Leftover from contexts work. @blizzz Could you document the current logic on what is possible for hiding the applications from the backend side in here so we can have a...