summaryrefslogtreecommitdiffstats
path: root/core
diff options
context:
space:
mode:
authorDaniel <mail@danielkesselberg.de>2023-08-28 14:19:05 +0200
committerGitHub <noreply@github.com>2023-08-28 14:19:05 +0200
commitc2d55ab5f6284313a999c4d71224c0401f04edd4 (patch)
tree102d3457754e89ead6873fcda9f9edc787d63c75 /core
parentd4e67afed77cd8b93f807816fe5be856bb1d6d6c (diff)
parent84230059e97de07c721e61111f747f5e62c61e9a (diff)
downloadnextcloud-server-c2d55ab5f6284313a999c4d71224c0401f04edd4.tar.gz
nextcloud-server-c2d55ab5f6284313a999c4d71224c0401f04edd4.zip
Merge pull request #40067 from nextcloud/fix-cancel-files-scan
Diffstat (limited to 'core')
-rw-r--r--core/Command/Base.php2
1 files changed, 1 insertions, 1 deletions
diff --git a/core/Command/Base.php b/core/Command/Base.php
index abf9f95773a..2581e273cb9 100644
--- a/core/Command/Base.php
+++ b/core/Command/Base.php
@@ -161,7 +161,7 @@ class Base extends Command implements CompletionAwareInterface {
*
* Gives a chance to the command to properly terminate what it's doing
*/
- protected function cancelOperation() {
+ public function cancelOperation(): void {
$this->interrupted = true;
}