mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-03-13 10:30:14 +01:00
Use character name for gallery URL
This commit is contained in:
parent
76e45abfc6
commit
5555b3e7db
@ -171,7 +171,7 @@ async function showCharGallery() {
|
||||
let url = selected_group || this_chid;
|
||||
if (!selected_group && this_chid !== undefined) {
|
||||
const char = characters[this_chid];
|
||||
url = char.avatar.replace('.png', '');
|
||||
url = char.name;
|
||||
}
|
||||
|
||||
const items = await getGalleryItems(url);
|
||||
@ -457,7 +457,7 @@ async function listGalleryCommand(args) {
|
||||
let url = args.char ?? (args.group ? groups.find(it => it.name == args.group)?.id : null) ?? (selected_group || this_chid);
|
||||
if (!args.char && !args.group && !selected_group && this_chid !== undefined) {
|
||||
const char = characters[this_chid];
|
||||
url = char.avatar.replace('.png', '');
|
||||
url = char.name;
|
||||
}
|
||||
|
||||
const items = await getGalleryItems(url);
|
||||
|
Loading…
x
Reference in New Issue
Block a user