hisaruki commited on
Commit
4d1db98
·
1 Parent(s): f542108

summarizedエラー字はそのまま普通にpayloadを作る

Browse files
Files changed (1) hide show
  1. gemini.js +5 -2
gemini.js CHANGED
@@ -224,8 +224,11 @@ function createSummarizedText() {
224
  if (rootUl) {
225
  processUl(rootUl);
226
  }
227
-
228
- return summarizedText.trim();
 
 
 
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() {