This commit is contained in:
syuilo
2025-02-21 21:05:45 +09:00
parent 8c20c79cde
commit 16b4563ade
3 changed files with 5 additions and 2 deletions

View File

@@ -66,7 +66,7 @@ export class SystemAccountService {
return systemAccount.user as MiLocalUser;
} else {
const created = await this.createCorrespondingUser(type, {
username: `system.${type}`,
username: `system.${type}`, // NOTE: (できれば避けたいが)system.から始まるかどうかでシステムアカウントかどうかを判定している処理もあるので変えないように
name: this.meta.name,
});
this.cache.set(type, created);