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,22 +248,24 @@ export default class CharacterPreview extends Vue {
} }
async updateConversationStatus(): Promise<void> { 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) { if (logDates.length === 0) {
const messages = await core.logs.getLogs(core.characters.ownCharacter.name, char.name.toLowerCase(), new Date()); return;
const matcher = /\[AUTOMATED MESSAGE]/;
this.conversation = _.map(
_.takeRight(_.filter(messages, (m) => !matcher.exec(m.text)), 3),
(m) => ({
...m,
text: m.text.length > 512 ? m.text.substr(0, 512) + '…' : m.text
})
);
// this.conversation = core.conversations.getPrivate(char, true);
} }
const messages = await core.logs.getLogs(ownName, logKey, _.last(logDates) as Date);
const matcher = /\[AUTOMATED MESSAGE]/;
this.conversation = _.map(
_.takeRight(_.filter(messages, (m) => !matcher.exec(m.text)), 3),
(m) => ({
...m,
text: m.text.length > 512 ? m.text.substr(0, 512) + '…' : m.text
})
);
} }
updateOnlineStatus(): void { updateOnlineStatus(): void {