summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--lib/Command/Reset.php2
-rw-r--r--lib/Service/ConfigService.php1
2 files changed, 1 insertions, 2 deletions
diff --git a/lib/Command/Reset.php b/lib/Command/Reset.php
index b70cd909..3f52b326 100644
--- a/lib/Command/Reset.php
+++ b/lib/Command/Reset.php
@@ -171,9 +171,7 @@ class Reset extends Base {
*
*/
private function uninstallWellKnown() {
- echo $this->configService->getCoreValue('public_webfinger');
if ($this->configService->getCoreValue('public_webfinger') === 'social/lib/webfinger.php') {
- echo '##@$#@$';
$this->configService->unsetCoreValue('public_webfinger');
}
if ($this->configService->getCoreValue('public_host-meta') === 'social/lib/hostmeta.php') {
diff --git a/lib/Service/ConfigService.php b/lib/Service/ConfigService.php
index 0672f7b0..267deca7 100644
--- a/lib/Service/ConfigService.php
+++ b/lib/Service/ConfigService.php
@@ -27,6 +27,7 @@ declare(strict_types=1);
*
*/
+
namespace OCA\Social\Service;
use daita\MySmallPhpTools\Traits\TArrayTools;