From 0066069e73f44e4bbc7f806334bb37251017ecb1 Mon Sep 17 00:00:00 2001 From: filesite Date: Mon, 20 May 2024 08:44:01 +0800 Subject: [PATCH] set default nickname empty --- plugins/Common.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/plugins/Common.php b/plugins/Common.php index 9fd3261..f5ff015 100644 --- a/plugins/Common.php +++ b/plugins/Common.php @@ -131,7 +131,7 @@ Class Common { $dirPath = str_replace($username, $dir, $rootDir); $filepath = "{$dirPath}/README_nickname.txt"; - $nickname = $username; + $nickname = ''; if (file_exists($filepath)) { $nickname = file_get_contents($filepath); if (!empty($nickname)) {