Photon logging fixes

This commit is contained in:
Natsumi
2021-12-10 02:02:16 +13:00
parent 1bf5bcf1f3
commit 85a6304053
4 changed files with 114 additions and 135 deletions

View File

@@ -567,7 +567,7 @@ Vue.component('marquee-text', MarqueeText);
};
$app.methods.addEntryHudFeed = function (json) {
var {displayName, text} = JSON.parse(json);
var {displayName, text, color} = JSON.parse(json);
var combo = 1;
this.hudFeed.forEach((item) => {
if (item.displayName === displayName && item.text === text) {
@@ -579,7 +579,8 @@ Vue.component('marquee-text', MarqueeText);
time: Date.now(),
displayName,
text,
combo
combo,
color
});
this.cleanHudFeed();
};