Minor fix

This commit is contained in:
Mr. Stallion 2022-03-25 19:12:54 -07:00
parent 75b5ef54cf
commit 4bcb558d5e
1 changed files with 16 additions and 14 deletions

View File

@ -248,10 +248,15 @@ export default class CharacterPreview extends Vue {
}
async updateConversationStatus(): Promise<void> {
const char = core.characters.get(this.characterName!);
const ownName = core.characters.ownCharacter.name;
const logKey = this.characterName!.toLowerCase();
const logDates = await core.logs.getLogDates(ownName, logKey);
if (char) {
const messages = await core.logs.getLogs(core.characters.ownCharacter.name, char.name.toLowerCase(), new Date());
if (logDates.length === 0) {
return;
}
const messages = await core.logs.getLogs(ownName, logKey, _.last(logDates) as Date);
const matcher = /\[AUTOMATED MESSAGE]/;
this.conversation = _.map(
@ -261,9 +266,6 @@ export default class CharacterPreview extends Vue {
text: m.text.length > 512 ? m.text.substr(0, 512) + '…' : m.text
})
);
// this.conversation = core.conversations.getPrivate(char, true);
}
}
updateOnlineStatus(): void {