Stable Diffusion: reference image toast shows the description (tag/path as fallback)

f2a08db86015fb388899b0385c6bac0444d4afb0

permissionBRICK <40219477+permissionBRICK@users.noreply.github.com>

1 files changed, +1 -1Ignore whitespace
public/scripts/extensions/stable-diffusion/index.js+1 -1
@@ -5261,7 +5261,7 @@ async function generateComfyImageCommon(prompt, negativePrompt, signal, basePath
52615261 const refBase64 = (refImage && await fetchReferenceImageBase64(refImage)) || PNG_PIXEL;
52625262 if (refBase64 !== PNG_PIXEL) {
52635263 console.log(`SD: workflow reference image: "${refImage.tag}" (${refImage.path})`);
52645264 toastr.info(`Reference image: ${refImage.description || refImage.tag || refImage.path}`, 'Image Generation');
52655265 } else {
52665266 console.warn('SD: workflow uses %reference_image% but no library image was available; sending a transparent pixel');
52675267 }