mirror of
https://github.com/PluralKit/PluralKit.git
synced 2026-02-08 14:57:54 +00:00
fix: public title with no system name
This commit is contained in:
parent
63c8ffb36f
commit
80a130d9a8
1 changed files with 1 additions and 1 deletions
|
|
@ -34,7 +34,7 @@
|
|||
try {
|
||||
let res: Sys = await api.getSystem({id: id})
|
||||
user = res;
|
||||
title = user.name;
|
||||
title = user.name ? user.name : "system";
|
||||
} catch (error) {
|
||||
console.log(error);
|
||||
err = error.message;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue