From dc5bb7a851576fae4e0ca94f3b95297fc1b21f14 Mon Sep 17 00:00:00 2001 From: nano Date: Mon, 4 May 2026 00:09:24 +0000 Subject: [PATCH] Use public Pollinations image URLs --- app/views/Posts/edit.asp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/Posts/edit.asp b/app/views/Posts/edit.asp index d47b2b3..d8e448a 100644 --- a/app/views/Posts/edit.asp +++ b/app/views/Posts/edit.asp @@ -74,7 +74,7 @@ aiButton.addEventListener('click', function () { var prompt = window.prompt('Describe the image to generate with AI'); if (!prompt) return; - var url = 'https://gen.pollinations.ai/image/' + encodeURIComponent(prompt); + var url = 'https://pollinations.ai/p/' + encodeURIComponent(prompt); var range = quill.getSelection(true) || { index: quill.getLength() }; quill.insertEmbed(range.index, 'image', url, Quill.sources.USER); quill.insertText(range.index + 1, '\n', Quill.sources.SILENT);