Add relative suffix to timediff macro output

c91e7dd948309bbebd0057c019c49a11b4ceaa2d

Cohee <18619528+Cohee1207@users.noreply.github.com>

1 files changed, +1 -1Showing whitespace changes
public/scripts/macros.js+1 -1
@@ -401,7 +401,7 @@ function timeDiffReplace(input) {
401 const time2 = moment(matchPart2);401 const time2 = moment(matchPart2);
402402
403 const timeDifference = moment.duration(time1.diff(time2));403 const timeDifference = moment.duration(time1.diff(time2));
404 return timeDifference.humanize();404 return timeDifference.humanize(true);
405 });405 });
406406
407 return output;407 return output;