Merging actor avatars. Fixed faulty actor ID search in merge dialog.

This commit is contained in:
2026-06-10 01:43:35 +02:00
parent f9a51ffdce
commit 15b61ed56f
2 changed files with 12 additions and 4 deletions

View File

@@ -97,7 +97,7 @@ const submitted = ref(false);
async function searchActors() {
const res = await get('/actors', {
q: `${actorQuery.value}*`, // return partial matches
q: actorQuery.value.charAt(0) === '#' ? actorQuery.value : `${actorQuery.value}*`, // return partial matches
limit: 10,
global: true,
});