32 lines
1.4 KiB
Diff
32 lines
1.4 KiB
Diff
From 427b261b78aedd9f04f690e20e773bbc9fd60432 Mon Sep 17 00:00:00 2001
|
|
From: leeffo <leeffo@yeah.net>
|
|
Date: Sun, 23 Apr 2023 10:14:14 +0800
|
|
Subject: [PATCH] =?UTF-8?q?feat:=20=E6=8E=A7=E5=88=B6=E4=B8=AD=E5=BF=83roo?=
|
|
=?UTF-8?q?t=E7=94=A8=E6=88=B7=E6=97=A0=E6=B3=95=E4=BF=AE=E6=94=B9?=
|
|
=?UTF-8?q?=E5=85=B6=E4=BB=96=E7=94=A8=E6=88=B7=E7=9A=84=E5=AF=86=E7=A0=81?=
|
|
MIME-Version: 1.0
|
|
Content-Type: text/plain; charset=UTF-8
|
|
Content-Transfer-Encoding: 8bit
|
|
|
|
---
|
|
src/frame/modules/accounts/accountsworker.cpp | 3 ++-
|
|
1 file changed, 2 insertions(+), 1 deletion(-)
|
|
|
|
diff --git a/src/frame/modules/accounts/accountsworker.cpp b/src/frame/modules/accounts/accountsworker.cpp
|
|
index b57ad5d..a0654e1 100644
|
|
--- a/src/frame/modules/accounts/accountsworker.cpp
|
|
+++ b/src/frame/modules/accounts/accountsworker.cpp
|
|
@@ -532,7 +532,8 @@ void AccountsWorker::deleteUserIcon(User *user, const QString &iconPath)
|
|
|
|
void AccountsWorker::addUser(const QString &userPath)
|
|
{
|
|
- if (userPath.contains("User0", Qt::CaseInsensitive) || m_userModel->contains(userPath))
|
|
+ //服务器版本需要root用户信息及相关流程
|
|
+ if ((!IsServerSystem && userPath.contains("User0", Qt::CaseInsensitive)) || m_userModel->contains(userPath))
|
|
return;
|
|
AccountsUser *userInter = new AccountsUser(AccountsService, userPath, QDBusConnection::systemBus(), this);
|
|
userInter->setSync(false);
|
|
--
|
|
2.20.1
|
|
|