mirror of
https://github.com/SillyTavern/SillyTavern.git
synced 2025-01-31 11:35:37 +01:00
+1 less improper null check
This commit is contained in:
parent
0021055f5c
commit
efe54086ce
@ -4750,7 +4750,7 @@ async function saveReply(type, getMessage, fromStreaming, title, swipes) {
|
||||
type = 'normal';
|
||||
}
|
||||
|
||||
if (chat.length && !chat[chat.length - 1]['extra']) {
|
||||
if (chat.length && (!chat[chat.length - 1]['extra'] || typeof chat[chat.length - 1]['extra'] !== 'object')) {
|
||||
chat[chat.length - 1]['extra'] = {};
|
||||
}
|
||||
|
||||
@ -4899,7 +4899,7 @@ async function saveReply(type, getMessage, fromStreaming, title, swipes) {
|
||||
|
||||
function saveImageToMessage(img, mes) {
|
||||
if (mes && img.image) {
|
||||
if (typeof mes.extra !== 'object') {
|
||||
if (!mes.extra || typeof mes.extra !== 'object') {
|
||||
mes.extra = {};
|
||||
}
|
||||
mes.extra.image = img.image;
|
||||
|
Loading…
x
Reference in New Issue
Block a user