Arjan
(Arjan)
June 12, 2022, 11:43am
1
Very minor, looking at the admin page for a user, I see June displayed as July:
Looking at /admin/email/bounced
for this user shows the last bounce was 4 days ago, tooltip showing Jun 8, 2022 11:44 am
.
(Aside, I was expecting to use https://github.com/discourse/discourse to find/report issues. Its README also does not mention Meta?)
1 Like
Benjamin_D
(Benjamin Decotte)
June 12, 2022, 12:19pm
2
I think that’s the date when the bounce score is to be reset:
@discourseComputed("bounce_score", "reset_bounce_score_after")
bounceScore(bounce_score, reset_bounce_score_after) {
if (bounce_score > 0) {
return `${bounce_score} - ${moment(reset_bounce_score_after).format(
"LL"
)}`;
} else {
return bounce_score;
}
},
not the date of the last bounced email
4 Likes
Arjan
(Arjan)
June 12, 2022, 6:21pm
3
Ah, that may explain things. (Though I don’t know what an admin would do with that information.) And indeed it also shows a Reset button for this very example:
1 Like
I think there may be a case to give that information a little more context on the page. I’ve slid this topic over to ux for consideration.
2 Likes