Fix #1868
This commit is contained in:
parent
b8e948b009
commit
773d104306
1 changed files with 2 additions and 1 deletions
|
@ -49,7 +49,8 @@ export default Vue.extend({
|
|||
add() {
|
||||
(this as any).apis.input({
|
||||
title: '%i18n:@username%',
|
||||
}).then(async username => {
|
||||
}).then(async (username: string) => {
|
||||
if (username.startsWith('@')) username = username.slice(1);
|
||||
const user = await (this as any).api('users/show', {
|
||||
username
|
||||
});
|
||||
|
|
Loading…
Reference in a new issue