フィルター設定時エラーの調整
This commit is contained in:
parent
e8e925f03d
commit
15bb9cb1f4
1 changed files with 2 additions and 2 deletions
|
@ -801,8 +801,8 @@ const startServer = async () => {
|
|||
|
||||
// reference_texts property is not working if ProcessReferencesWorker is
|
||||
// used on PostStatusService and so on. (Asynchronous processing)
|
||||
const reference_texts = payload.reference_texts || [];
|
||||
if (payload.reference_texts) {
|
||||
const reference_texts = payload?.reference_texts || [];
|
||||
if (payload && typeof payload.reference_texts !== 'undefined') {
|
||||
delete payload.reference_texts;
|
||||
}
|
||||
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue