chore: uptick

This commit is contained in:
Brooklyn Nicholson 2026-04-08 14:22:36 -05:00
parent b597123489
commit a435c7274a

View file

@ -1314,9 +1314,15 @@ export function App({ gw }: { gw: GatewayClient }) {
return true return true
case 'personality': case 'personality':
rpc('config.set', { key: 'personality', value: arg }).then((r: any) => if (arg) {
sys(`personality: ${r.value || 'default'}`) rpc('config.set', { key: 'personality', value: arg }).then((r: any) =>
) sys(`personality: ${r.value || 'default'}`)
)
} else {
gw.request('slash.exec', { command: 'personality', session_id: sid })
.then((r: any) => sys(r?.output || '(no output)'))
.catch(() => sys('personality command failed'))
}
return true return true