]>
source.dussan.org Git - nextcloud-server.git/log
Côme Chilliet [Thu, 13 Jan 2022 16:20:45 +0000 (17:20 +0100)]
Remove useless indexes with duplicated names on backup table
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Joas Schilling [Thu, 13 Jan 2022 13:22:30 +0000 (14:22 +0100)]
Update autoloader
Signed-off-by: Joas Schilling <coding@schilljs.com>
Côme Chilliet [Thu, 13 Jan 2022 11:20:57 +0000 (12:20 +0100)]
Fix user_ldap migration for long DNs support
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Côme Chilliet [Tue, 11 Jan 2022 15:36:27 +0000 (16:36 +0100)]
Move duplicated code to a base class for group_mapping migrations
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Co-authored-by: Joas Schilling <213943+nickvergessen@users.noreply.github.com>
Côme Chilliet [Tue, 11 Jan 2022 15:16:02 +0000 (16:16 +0100)]
Split dropTable and createTable in two migrations
It is not possible to drop and create the same table in one migration
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Côme Chilliet [Mon, 10 Jan 2022 11:07:41 +0000 (12:07 +0100)]
Fix primary key change in user_ldap migration
Use a backup table to copy the data, drop table and recreate it with
correct primary key, then copy the data back and drop the backup table.
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
John Molakvoæ [Fri, 14 Jan 2022 07:46:37 +0000 (08:46 +0100)]
Merge pull request #30596 from nextcloud/fix/static_analysis
Nextcloud bot [Fri, 14 Jan 2022 02:28:27 +0000 (02:28 +0000)]
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
MichaIng [Thu, 13 Jan 2022 22:02:21 +0000 (23:02 +0100)]
Merge pull request #30599 from nextcloud/backport/29118/stable21
[stable21] add better index for finding unindexed paths
Louis Chemineau [Tue, 11 Jan 2022 13:28:28 +0000 (14:28 +0100)]
Fix static analysis on CI
Signed-off-by: Louis Chemineau <louis@chmn.me>
Robin Appelman [Thu, 7 Oct 2021 14:11:49 +0000 (16:11 +0200)]
add better index for finding unindexed paths
for the following query 'SELECT "path" FROM "oc_filecache" WHERE ("storage" = $storage) AND ("size" < 0) ORDER BY "fileid" DESC LIMIT 1;'
currently the database will in some cases decide to priorize the sort by fileid over the filter when picking what index to use, resulting in a much slower query.
by creating an index that allows first sorting by fileid and also filter by storage and size this case will be greatly sped up
Signed-off-by: Robin Appelman <robin@icewind.nl>
Vincent Petry [Thu, 13 Jan 2022 10:36:06 +0000 (11:36 +0100)]
Merge pull request #30638 from nextcloud/backport/30620/stable21
[stable21] Properly abort uploads
Vincent Petry [Wed, 12 Jan 2022 15:39:45 +0000 (16:39 +0100)]
Properly hide progress bar after error
Whenever an error occurs, also hide the progress bar.
The logic was also adjusted to properly detect uploads that are pending
deletion, in which case the progress bar can already be hidden.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Vincent Petry [Wed, 12 Jan 2022 10:42:10 +0000 (11:42 +0100)]
Properly abort uploads
Add a new approach for flagging an upload as aborted because we can't
rely on the browser fully cancelling the request as we now seem to
receive an error response from the server instead of a jQuery "abort"
message.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Nextcloud bot [Thu, 13 Jan 2022 02:26:53 +0000 (02:26 +0000)]
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Vincent Petry [Wed, 12 Jan 2022 16:43:39 +0000 (17:43 +0100)]
Merge pull request #30629 from nextcloud/backport/30593/stable21
[stable21] Trigger "changeDirectory" event on URL change
Vincent Petry [Tue, 11 Jan 2022 11:17:23 +0000 (12:17 +0100)]
Trigger "changeDirectory" even on URL change
When using the browser back button or clicking on sections on the left
sidebar (like favorites), the "changeDirectory" jQuery event did not get
called, so apps like recommendations would not notice the directory
change.
This fixes the issue by also setting changeUrl to true when the file
list's directory got changed as a result from a URL change.
Added optional changedThroughUrl argument to make sure the event
recipient knows if the change was done through a URL change and make it
possible prevent a loop in the onDirectoryChange handler that actually
changes the URL when the origin was already from a URL change.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Vincent Petry [Wed, 12 Jan 2022 13:42:53 +0000 (14:42 +0100)]
Merge pull request #30617 from nextcloud/backport/30609/stable21
[stable21] Fix RequestURL check for cli commands
Joas Schilling [Wed, 12 Jan 2022 12:50:22 +0000 (13:50 +0100)]
Merge pull request #30601 from nextcloud/backport/30291/stable21
[stable21] Prevent loading images that would require too much memory.
Carl Schwan [Tue, 11 Jan 2022 18:14:28 +0000 (19:14 +0100)]
Fix RequestURL check for cli commands
Fix https://github.com/nextcloud/files_automatedtagging/issues/526
Fix https://github.com/nextcloud/groupfolders/issues/1855
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Nextcloud bot [Wed, 12 Jan 2022 02:27:17 +0000 (02:27 +0000)]
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Joachim Bauch [Thu, 16 Dec 2021 08:17:11 +0000 (09:17 +0100)]
Prevent loading images that would require too much memory.
For most image formats, the header specifies the width/height.
PHP allocates an image object from that size, even if the actual
image data is much smaller. This image object size is not limited
by the limit configured in PHP.
The memory limit can be configured through "config.php" setting
"preview_max_memory" and defaults to 128 MBytes which should be
enough for most images without filling up all memory.
Signed-off-by: Joachim Bauch <bauch@struktur.de>
Louis [Tue, 11 Jan 2022 13:15:41 +0000 (14:15 +0100)]
Merge pull request #30590 from nextcloud/backport/30571/stable21
[stable21] fix: only use jquery once it is available
Vincent Petry [Tue, 11 Jan 2022 13:07:23 +0000 (14:07 +0100)]
Merge pull request #30579 from nextcloud/backport/30565/stable21
[stable21] Fix fail when keys/files folder already exists
Vincent Petry [Tue, 11 Jan 2022 13:05:55 +0000 (14:05 +0100)]
Merge pull request #30583 from nextcloud/bugfix/noid/npm-ci-for-karma/stable21
[stable21] Use npm ci when running JS tests
Azul [Mon, 10 Jan 2022 13:54:29 +0000 (14:54 +0100)]
fix: only use jquery once it is available
publicpage.js is loaded very early and cannot rely on jquery being loaded already.
Move the use of `$` into the `DomContentLoaded` handler.
Signed-off-by: Azul <azul@riseup.net>
Vincent Petry [Mon, 10 Jan 2022 10:15:22 +0000 (11:15 +0100)]
Fix fail when keys/files folder already exists
Fixes an issue with transfer ownership in move mode where the folder
"files_encryption/keys/files" already exists.
Instead of failing, its existence is checked before calling mkdir.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Vincent Petry [Tue, 11 Jan 2022 07:56:37 +0000 (08:56 +0100)]
Update package-lock in build dir
It wasn't up to date with package.json
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Nextcloud bot [Tue, 11 Jan 2022 02:27:25 +0000 (02:27 +0000)]
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Vincent Petry [Mon, 10 Jan 2022 16:50:42 +0000 (17:50 +0100)]
Recompile JS
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Vincent Petry [Mon, 10 Jan 2022 14:08:03 +0000 (15:08 +0100)]
Fix JS tests after test lib updates
Prevent XHR during load by checking window.TESTING.
Adjust some expected values.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Vincent Petry [Mon, 10 Jan 2022 17:00:24 +0000 (18:00 +0100)]
Make chokidar happy with fsevents
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Vincent Petry [Mon, 10 Jan 2022 13:17:09 +0000 (14:17 +0100)]
Update node deps for JS tests
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Vincent Petry [Mon, 10 Jan 2022 11:00:16 +0000 (12:00 +0100)]
Use npm ci when running JS tests
This makes sure that the pinned versions are selected correctly.
Fixes the colors.js incident.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Nextcloud bot [Mon, 10 Jan 2022 02:26:52 +0000 (02:26 +0000)]
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
MichaIng [Sun, 9 Jan 2022 20:28:05 +0000 (21:28 +0100)]
Merge pull request #30559 from nextcloud/backport/30468/stable21
[stable21] Handle LocalServerException when scanning external shares
Carl Schwan [Mon, 3 Jan 2022 08:12:27 +0000 (09:12 +0100)]
Handle LocalServerException when scanning external shares
When remoteIsOwnCloud trows LocalServerException, the storage is
unavailable and instead of crashing the scanner, ignore the specific
storage.
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Nextcloud bot [Sun, 9 Jan 2022 02:26:41 +0000 (02:26 +0000)]
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Simon L [Sat, 8 Jan 2022 10:41:49 +0000 (11:41 +0100)]
Merge pull request #30454 from nextcloud/backport/30420/stable21
[stable21] improve status modal
szaimen [Sat, 8 Jan 2022 09:26:46 +0000 (10:26 +0100)]
fix compiling
Signed-off-by: szaimen <szaimen@e.mail.de>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Nextcloud bot [Sat, 8 Jan 2022 02:26:44 +0000 (02:26 +0000)]
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
blizzz [Fri, 7 Jan 2022 23:54:39 +0000 (00:54 +0100)]
Merge pull request #30527 from nextcloud/backport/30511/stable21
[stable21] update CRL after revocation of sharerenamer.crt
John Molakvoæ [Fri, 7 Jan 2022 14:37:52 +0000 (15:37 +0100)]
Merge pull request #30520 from nextcloud/release/21.0.8
John Molakvoæ [Fri, 7 Jan 2022 12:11:26 +0000 (13:11 +0100)]
Merge pull request #30488 from nextcloud/backport/29780/stable21
MichaIng [Fri, 7 Jan 2022 11:25:36 +0000 (12:25 +0100)]
Merge pull request #30521 from nextcloud/backport/30515/stable21
[stable21] Remove iconv from dependencies and tests
Vitor Mattos [Thu, 6 Jan 2022 15:18:06 +0000 (12:18 -0300)]
Update crl
Signed-off-by: Vitor Mattos <vitor@php.rio>
Joas Schilling [Fri, 7 Jan 2022 09:50:38 +0000 (10:50 +0100)]
Merge pull request #30524 from nextcloud/backport/30492/stable21
[stable21] Fix passing on the parameter
MichaIng [Thu, 6 Jan 2022 22:56:28 +0000 (23:56 +0100)]
[stable22] Remove iconv from dependencies and tests
which is not used anymore since: https://github.com/nextcloud/server/pull/29470
Signed-off-by: MichaIng <micha@dietpi.com>
Joas Schilling [Wed, 5 Jan 2022 08:30:20 +0000 (09:30 +0100)]
Fix passing on the parameter
Signed-off-by: Joas Schilling <coding@schilljs.com>
Joas Schilling [Fri, 19 Nov 2021 08:31:37 +0000 (09:31 +0100)]
Run migrations fully when reenabling an app
Signed-off-by: Joas Schilling <coding@schilljs.com>
John Molakvoæ [Fri, 7 Jan 2022 07:49:00 +0000 (08:49 +0100)]
Merge pull request #30482 from nextcloud/backport/30423/stable21
John Molakvoæ [Fri, 7 Jan 2022 07:48:20 +0000 (08:48 +0100)]
Merge pull request #29963 from nextcloud/backport/29951/stable21
John Molakvoæ [Fri, 7 Jan 2022 07:46:22 +0000 (08:46 +0100)]
Merge pull request #29325 from nextcloud/backport/28541/stable21
John Molakvoæ [Fri, 7 Jan 2022 07:45:14 +0000 (08:45 +0100)]
Merge pull request #28657 from nextcloud/backport/28419/stable21
John Molakvoæ [Fri, 7 Jan 2022 07:28:08 +0000 (08:28 +0100)]
21.0.8 RC1
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Nextcloud bot [Fri, 7 Jan 2022 02:28:22 +0000 (02:28 +0000)]
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Nextcloud bot [Thu, 6 Jan 2022 02:28:41 +0000 (02:28 +0000)]
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Nextcloud bot [Wed, 5 Jan 2022 02:28:00 +0000 (02:28 +0000)]
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
John Molakvoæ [Tue, 28 Dec 2021 14:18:03 +0000 (15:18 +0100)]
Fix uploading text position
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>
Nextcloud bot [Tue, 4 Jan 2022 02:27:53 +0000 (02:27 +0000)]
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Nextcloud bot [Mon, 3 Jan 2022 02:27:59 +0000 (02:27 +0000)]
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Nextcloud bot [Sat, 1 Jan 2022 02:27:25 +0000 (02:27 +0000)]
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
MichaIng [Fri, 31 Dec 2021 20:27:41 +0000 (21:27 +0100)]
Merge pull request #30448 from nextcloud/backport/30440/stable21
[stable21] Make sure to get file model in template picker
MichaIng [Fri, 31 Dec 2021 16:48:10 +0000 (17:48 +0100)]
Merge pull request #30435 from nextcloud/backport/30392/stable21
[stable21] Add missing index for propertypath only queries of DAV properties
Nextcloud bot [Fri, 31 Dec 2021 02:27:53 +0000 (02:27 +0000)]
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
szaimen [Tue, 28 Dec 2021 11:38:22 +0000 (12:38 +0100)]
improve status modal
Signed-off-by: szaimen <szaimen@e.mail.de>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Louis Chemineau [Thu, 30 Dec 2021 17:08:25 +0000 (18:08 +0100)]
Manual compilation
Signed-off-by: Louis Chemineau <louis@chmn.me>
Julien Veyssier [Wed, 29 Dec 2021 13:54:40 +0000 (14:54 +0100)]
fix template picker for file actions using the fileInfoModel
Signed-off-by: Julien Veyssier <eneiluj@posteo.net>
Signed-off-by: nextcloud-command <nextcloud-command@users.noreply.github.com>
Louis [Thu, 30 Dec 2021 10:03:30 +0000 (11:03 +0100)]
Merge pull request #30341 from nextcloud/backport/29329/stable21
[stable21] fix potential unwarranted memberships in nested groups from LDAP
John Molakvoæ [Thu, 30 Dec 2021 07:11:54 +0000 (08:11 +0100)]
Merge pull request #30442 from nextcloud/backport/30353/stable21
Nextcloud bot [Thu, 30 Dec 2021 02:28:21 +0000 (02:28 +0000)]
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Carl Schwan [Mon, 20 Dec 2021 14:20:52 +0000 (15:20 +0100)]
Handle external share with invalid host
remoteIsOwnCloud might throw an exception when the host is localhost.
Handle this case instead of aborting completely. The behavior is the
same as that is done 10 lines under it
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Christoph Wurst [Thu, 23 Dec 2021 10:34:51 +0000 (11:34 +0100)]
Add missing index for propertypath only queries against properties
Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
Nextcloud bot [Tue, 28 Dec 2021 02:28:00 +0000 (02:28 +0000)]
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Nextcloud bot [Mon, 27 Dec 2021 02:27:35 +0000 (02:27 +0000)]
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Nextcloud bot [Sat, 25 Dec 2021 02:27:39 +0000 (02:27 +0000)]
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Nextcloud bot [Fri, 24 Dec 2021 02:29:31 +0000 (02:29 +0000)]
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Nextcloud bot [Thu, 23 Dec 2021 02:28:06 +0000 (02:28 +0000)]
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Nextcloud bot [Wed, 22 Dec 2021 02:28:29 +0000 (02:28 +0000)]
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
John Molakvoæ [Tue, 21 Dec 2021 14:09:52 +0000 (15:09 +0100)]
Merge pull request #30314 from nextcloud/backport/30266/stable21
Carl Schwan [Tue, 14 Dec 2021 12:30:14 +0000 (13:30 +0100)]
Fix share owner not being displayed in sharing tab
This only concerns subfolder and files inside a shared folder and is
used as fallback when the OCS api returns a empty result, because it
only works on the shared folder and not the content inside of it.
This unify the tab with the folder list.
This offers a less descriptive share information but making the
OCS api returns all the details even for the subfolder would very
probably be bad for performance (since we would need to fetch the shares
for all the parent folders until we found one or are in the root folder).
Signed-off-by: Carl Schwan <carl@carlschwan.eu>
Nextcloud bot [Tue, 21 Dec 2021 02:28:15 +0000 (02:28 +0000)]
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
MichaIng [Mon, 20 Dec 2021 17:42:40 +0000 (18:42 +0100)]
Merge pull request #30251 from nextcloud/backport/30193/stable21
[stable21] Fix setting up 2FA when no providers are set up but backup codes
MichaIng [Mon, 20 Dec 2021 17:41:53 +0000 (18:41 +0100)]
Merge pull request #30248 from nextcloud/backport/30245/stable21
[stable21] Only wildcard search if enumeration is allowed
MichaIng [Mon, 20 Dec 2021 12:58:33 +0000 (13:58 +0100)]
Merge pull request #30348 from nextcloud/backport/29965/stable21
[stable21] [stable23] Avoid use of iconv to get rid of unicode
Louis [Mon, 20 Dec 2021 10:32:05 +0000 (11:32 +0100)]
Merge pull request #30346 from nextcloud/backport/30322/stable21
[stable21] fix overlapping in the help settings section
Côme Chilliet [Mon, 29 Nov 2021 16:02:25 +0000 (17:02 +0100)]
[stable23] Avoid use of iconv to get rid of unicode
Using iconv for translit depends upon server configuration, locale, and
PHP version. Using htmlentities instead to have a consistent behavior
independent of configuration.
Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
Co-authored-by: MichaIng <micha@dietpi.com>
szaimen [Fri, 17 Dec 2021 20:35:46 +0000 (21:35 +0100)]
fix overlapping in the help settings section
Signed-off-by: szaimen <szaimen@e.mail.de>
Louis [Mon, 20 Dec 2021 09:20:27 +0000 (10:20 +0100)]
Merge pull request #30308 from nextcloud/backport/30281/stable21
[stable21] Ignore non-existing groups when notifying group shares
Arthur Schiwon [Tue, 19 Oct 2021 20:00:13 +0000 (22:00 +0200)]
fix potential unwarranted memberships in nested groups from LDAP
- the issue was present only when using PHP based resolving of nested
group members. Normally nested members are common in AD (and Samba4) and
are resolved per LDAP_MATCHING_RULE_IN_CHAIN by default
- resolving nested members is recursive
- when the cache entry was created it happend for intermediate groups, too,
containing members from the parent group
- the check was added to only cache the root group with its members
- a runtime cache stores intermediate ldap read results
Signed-off-by: Arthur Schiwon <blizzz@arthur-schiwon.de>
Nextcloud bot [Mon, 20 Dec 2021 02:30:02 +0000 (02:30 +0000)]
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Nextcloud bot [Sun, 19 Dec 2021 02:29:36 +0000 (02:29 +0000)]
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
dependabot[bot] [Sat, 18 Dec 2021 16:22:58 +0000 (16:22 +0000)]
Merge pull request #30327 from nextcloud/dependabot/composer/build/integration/stable21/sabre/dav-4.3.0
dependabot[bot] [Sat, 18 Dec 2021 04:11:17 +0000 (04:11 +0000)]
Update sabre/dav requirement from 4.2.3 to 4.3.0 in /build/integration
Updates the requirements on [sabre/dav](https://github.com/sabre-io/dav) to permit the latest version.
- [Release notes](https://github.com/sabre-io/dav/releases)
- [Changelog](https://github.com/sabre-io/dav/blob/master/CHANGELOG.md)
- [Commits](https://github.com/sabre-io/dav/compare/4.2.3...4.3.0)
---
updated-dependencies:
- dependency-name: sabre/dav
dependency-type: direct:development
...
Signed-off-by: dependabot[bot] <support@github.com>
Nextcloud bot [Sat, 18 Dec 2021 02:27:44 +0000 (02:27 +0000)]
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Vincent Petry [Wed, 15 Dec 2021 13:25:39 +0000 (14:25 +0100)]
Discard share notification for non-existing groups
Group shares might exist even after a group got deleted.
This fix catches the situation and discards the notification for the
obsolete group.
Signed-off-by: Vincent Petry <vincent@nextcloud.com>
Co-authored-by: Joas Schilling <coding@schilljs.com>
Nextcloud bot [Fri, 17 Dec 2021 02:29:14 +0000 (02:29 +0000)]
[tx-robot] updated from transifex
Signed-off-by: Nextcloud bot <bot@nextcloud.com>
Louis [Thu, 16 Dec 2021 12:30:18 +0000 (13:30 +0100)]
Merge pull request #30192 from nextcloud/backport/30157/stable21
[stable21] Properly format sharing datepicker locale
Louis Chemineau [Thu, 16 Dec 2021 10:17:20 +0000 (11:17 +0100)]
Manual compilation
Signed-off-by: Louis Chemineau <louis@chmn.me>
John Molakvoæ [Thu, 9 Dec 2021 08:07:32 +0000 (09:07 +0100)]
Fix first day locale
Signed-off-by: John Molakvoæ <skjnldsv@protonmail.com>