This commit is contained in:
tamaina 2025-08-31 00:48:00 +09:00
parent 23618d4731
commit e81a7ac0d1
1 changed files with 2 additions and 2 deletions

View File

@ -116,10 +116,10 @@ async function processResult(result: QrScanner.ScanResult) {
await misskeyApi('ap/show', { uri })
.then(data => {
if (data.type === 'User') {
sources.set(uri, data.object);
sources.set(uri, data);
tab.value = 'users';
} else if (data.type === 'Note') {
sources.set(uri, data.object);
sources.set(uri, data);
tab.value = 'notes';
}
updateLists();