aboutsummaryrefslogtreecommitdiffstats
path: root/lib/private/Repair/NC16
Commit message (Collapse)AuthorAgeFilesLines
* Use typed version of IConfig::getSystemValue as much as possibleCôme Chilliet2023-04-052-2/+2
| | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* Use implementations instead of interfaces for accessing private methodsjld31032023-03-301-1/+1
| | | | Signed-off-by: jld3103 <jld3103yt@gmail.com>
* composer run cs:fixCôme Chilliet2023-01-203-3/+0
| | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* Migrate from ILogger to LoggerInterface in lib/privateCôme Chilliet2022-03-241-6/+5
| | | | Signed-off-by: Côme Chilliet <come.chilliet@nextcloud.com>
* Update php licensesJohn Molakvoæ (skjnldsv)2021-06-043-6/+3
| | | | Signed-off-by: John Molakvoæ (skjnldsv) <skjnldsv@protonmail.com>
* Format control structures, classes, methods and functionChristoph Wurst2020-04-101-1/+0
| | | | | | | | | | | | | | | To continue this formatting madness, here's a tiny patch that adds unified formatting for control structures like if and loops as well as classes, their methods and anonymous functions. This basically forces the constructs to start on the same line. This is not exactly what PSR2 wants, but I think we can have a few exceptions with "our" style. The starting of braces on the same line is pracrically standard for our code. This also removes and empty lines from method/function bodies at the beginning and end. Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Update license headersChristoph Wurst2019-12-053-3/+14
| | | | Signed-off-by: Christoph Wurst <christoph@winzerhof-wurst.at>
* Kill repair step for cypress testsDaniel Kesselberg2019-09-021-86/+0
| | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* Keep cypress if gitDaniel Kesselberg2019-09-011-0/+4
| | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* Add a repair step to clear the projects access cacheJoas Schilling2019-08-211-0/+58
| | | | Signed-off-by: Joas Schilling <coding@schilljs.com>
* Merge pull request #15606 from ↵Roeland Jago Douma2019-07-161-0/+4
|\ | | | | | | | | nextcloud/fix/15605/add-catch-for-runtime-exception Add catch for RuntimeException
| * Log RuntimeException in CleanupCardDAVPhotoCacheMorris Jobke2019-07-151-1/+4
| | | | | | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
| * Add catch for RuntimeExceptionDaniel Kesselberg2019-05-171-1/+2
| | | | | | | | | | | | | | | | getDirectoryListing can throw a NotFoundException or a RuntimeException. The repair step should be skipped if the cache directory is missing so a catch for both exceptions is required. Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* | Try to delete the cypress folder of the viewer appMorris Jobke2019-07-081-0/+82
|/ | | | Signed-off-by: Morris Jobke <hey@morrisjobke.de>
* Login flow V2Roeland Jago Douma2019-02-251-0/+49
| | | | | | | | This adds the new login flow. The desktop client will open up a browser and poll a returned endpoint at regular intervals to check if the flow is done. Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
* Log exceptionDaniel Kesselberg2019-02-071-4/+9
| | | | Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>
* Repair step to remove "photo." files created by photocacheDaniel Kesselberg2019-02-071-0/+99
Before https://github.com/nextcloud/server/pull/13843 a "photo." file could be created for unsupported image formats by photocache. Because a file is present but not jpg, png or gif no photo could be returned for this vcard. These invalid files are removed by this repair step. Signed-off-by: Daniel Kesselberg <mail@danielkesselberg.de>