summarizedエラー字はそのまま普通にpayloadを作る
Browse files
gemini.js
CHANGED
@@ -224,8 +224,11 @@ function createSummarizedText() {
|
|
224 |
if (rootUl) {
|
225 |
processUl(rootUl);
|
226 |
}
|
227 |
-
|
228 |
-
|
|
|
|
|
|
|
229 |
}
|
230 |
|
231 |
function createPayload() {
|
|
|
224 |
if (rootUl) {
|
225 |
processUl(rootUl);
|
226 |
}
|
227 |
+
if (summarizedText) {
|
228 |
+
return summarizedText.trim();
|
229 |
+
} else {
|
230 |
+
return document.getElementById('novelContent1').value;
|
231 |
+
}
|
232 |
}
|
233 |
|
234 |
function createPayload() {
|