forked from FoundKeyGang/FoundKey
Fix bug
This commit is contained in:
parent
4d4ffd70ac
commit
324a974dec
1 changed files with 9 additions and 7 deletions
|
@ -386,14 +386,16 @@ export const pack = async (
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
|
|
||||||
if (_note.replyId != null && _note.reply == null) {
|
if (opts.detail) {
|
||||||
console.warn(`[DAMAGED DB] (missing) pkg: note -> reply :: ${_note.id} (reply ${_note.replyId})`);
|
if (_note.replyId != null && _note.reply == null) {
|
||||||
return null;
|
console.warn(`[DAMAGED DB] (missing) pkg: note -> reply :: ${_note.id} (reply ${_note.replyId})`);
|
||||||
}
|
return null;
|
||||||
|
}
|
||||||
|
|
||||||
if (_note.renoteId != null && _note.renote == null) {
|
if (_note.renoteId != null && _note.renote == null) {
|
||||||
console.warn(`[DAMAGED DB] (missing) pkg: note -> renote :: ${_note.id} (renote ${_note.renoteId})`);
|
console.warn(`[DAMAGED DB] (missing) pkg: note -> renote :: ${_note.id} (renote ${_note.renoteId})`);
|
||||||
return null;
|
return null;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
//#endregion
|
//#endregion
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue