summaryrefslogtreecommitdiffstats
path: root/lib
Commit message (Collapse)AuthorAgeFilesLines
* Merge pull request #36441 from nextcloud/backport/36433/stable24blizzz2023-02-091-4/+1
|\ | | | | [stable24] fix(encryption): don't throw on missing file
| * fix(encryption): don't throw on missing fileRichard Steinmetz2023-02-071-4/+1
| | | | | | | | Signed-off-by: Richard Steinmetz <richard@steinmetz.cloud>
* | Merge pull request #36376 from nextcloud/backport/35894/stable24blizzz2023-02-091-5/+13
|\ \ | | | | | | [stable24] fix moving files of encrypted local storage to unencrypted local storage
| * | fix moving files of encrypted local storage to unencrypted local storageRobin Appelman2023-02-071-5/+13
| |/ | | | | | | | | | | for example when moving encrypted files to a groupfolder Signed-off-by: Robin Appelman <robin@icewind.nl>
* | Merge pull request #36318 from nextcloud/backport/36268/stable24blizzz2023-02-091-1/+1
|\ \ | | | | | | [stable24] Fix double where() usage in resource manager
| * | Fix double where() usage in resource managerJoas Schilling2023-02-071-1/+1
| |/ | | | | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-02-094-0/+8
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-02-08130-344/+254
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-02-072-38/+40
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-02-022-40/+44
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-02-016-36/+44
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-01-314-22/+24
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-01-302-0/+4
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Do not store generated mysql password if it was not usedJulius Hรคrtl2023-01-271-0/+3
| | | | Signed-off-by: Julius Hรคrtl <jus@bitgrid.net>
* Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-01-272-0/+14
| | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #36365 from nextcloud/backport/36352/stable24Vincent Petry2023-01-261-1/+1
|\ | | | | [stable24] imaginary - add tiff to supported formats
| * imaginary - add tiff to supported formatsSimon L2023-01-251-1/+1
| | | | | | | | Signed-off-by: Simon L <szaimen@e.mail.de>
* | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-01-264-4/+4
|/ | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* Merge pull request #35824 from nextcloud/backport/35614/stable24Christoph Wurst2023-01-255-9/+16
|\ | | | | [stable24] Fix array to string conversion in errorlog writer
| * fix(logging): Fix array to string conversion in errorlog writerChristoph Wurst2023-01-241-1/+2
| | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
| * fix(logging): Fix array to string conversion in errorlog writerChristoph Wurst2022-12-195-8/+14
| | | | | | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-01-244-6/+6
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-01-232-16/+16
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-01-224-58/+62
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-01-212-0/+8
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-01-204-0/+10
| | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | Merge pull request #35946 from nextcloud/backport/33813/stable24Vincent Petry2023-01-191-1/+1
|\ \ | | | | | | [stable24] Compare lowercase email when updating from ldap
| * | I dug into it again, and the issue is much simpler than I previously though.Louis Chemineau2023-01-021-1/+1
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | - LDAP has an email address with capital letters - NC store this address in lower case - When the user logs in, we compare the [stored email with the new lower case email](https://github.com/nextcloud/server/blob/master/lib/private/AllConfig.php#L259-L261) before storing it. Here, both email will be the same, so we won't store the new email address with upper case letters. Which is what we want. - We then [compare emails as they are before triggering an event](https://github.com/nextcloud/server/blob/master/lib/private/User/User.php#L202-L204), they won't match, so the user will receive an email signaling an email change every time he logs in. The fix is to compare the old email with the new lower case email before sending the event. Signed-off-by: Louis Chemineau <louis@chmn.me>
* | | Merge pull request #36168 from nextcloud/backport/35970/stable24Julius Hรคrtl2023-01-191-3/+3
|\ \ \ | | | | | | | | [stable24] Improve exception serializing
| * | | fix(ExceptionSerializer): encode arguments before filtering the traceJulius Hรคrtl2023-01-181-3/+3
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | This will avoid running into a Nesting level too deep error as the encodeArg calls will limit potential recursive calls on the arguments to a nesting level of 5 Signed-off-by: Julius Hรคrtl <jus@bitgrid.net>
* | | | Merge pull request #36100 from nextcloud/backport/34924/stable24Vincent Petry2023-01-193-7/+8
|\ \ \ \ | | | | | | | | | | [stable24] escape path prefix when doing cache jail search
| * | | | escape path prefix when doing cache jail searchRobin Appelman2023-01-113-7/+8
| | | | | | | | | | | | | | | | | | | | Signed-off-by: Robin Appelman <robin@icewind.nl>
* | | | | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-01-192-0/+2
| |/ / / |/| | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-01-182-0/+2
| | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-01-174-0/+4
| | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-01-166-0/+8
| | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-01-158-0/+8
| | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-01-14128-256/+266
| | | | | | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-01-132-0/+6
|/ / / | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-01-112-0/+8
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-01-104-0/+4
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-01-092-0/+2
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-01-084-0/+4
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-01-0710-6/+16
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Merge pull request #35094 from nextcloud/invalidateTokensWhenDeletingOAuthClientJohn Molakvoรฆ2023-01-066-3/+71
|\ \ \ | | | | | | | | fixes https://github.com/nextcloud/server/issues/35068
| * | | autoloadercheckerArtur Neumann2022-12-203-2/+17
| | | | | | | | | | | | | | | | Signed-off-by: Artur Neumann <artur@jankaritech.com>
| * | | added @since tagArtur Neumann2022-12-201-0/+4
| | | | | | | | | | | | | | | | Signed-off-by: Artur Neumann <artur@jankaritech.com>
| * | | public interface to invalidate tokens of userArtur Neumann2022-12-203-1/+50
| | |/ | |/| | | | | | | Signed-off-by: Artur Neumann <artur@jankaritech.com>
* | | Fix(l10n): ๐Ÿ”  Update translations from TransifexNextcloud bot2023-01-062-0/+4
| | | | | | | | | | | | Signed-off-by: Nextcloud bot <bot@nextcloud.com>
* | | Merge pull request #35818 from nextcloud/backport/35789/stable24Vincent Petry2023-01-053-0/+33
|\ \ \ | | | | | | | | [stable24] Allow additional Sabre plugins in publicwebdav.php