Fix Pollinations img query params

cf28df381cde65fafd9e94fa1cb469c0f8922455

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +2 -1Showing whitespace changes
src/endpoints/stable-diffusion.js+2 -1
@@ -824,7 +824,8 @@ pollinations.post('/generate', async (request, response) => {
824 height: String(request.body.height ?? 1024),824 height: String(request.body.height ?? 1024),
825 nologo: String(true),825 nologo: String(true),
826 nofeed: String(true),826 nofeed: String(true),
827 referer: 'sillytavern',827 private: String(true),
828 referrer: 'sillytavern',
828 });829 });
829 promptUrl.search = params.toString();830 promptUrl.search = params.toString();
830831