Skip to content

Commit

Permalink
Fix typo in linecount
Browse files Browse the repository at this point in the history
  • Loading branch information
singiamtel committed Oct 29, 2024
1 parent 477f30e commit 950ec33
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion server/chat-plugins/chatlog.ts
Original file line number Diff line number Diff line change
Expand Up @@ -483,7 +483,7 @@ export abstract class Searcher {
let buf = Utils.html`<div class="pad"><h2>Linecounts on `;
buf += `${roomid}${user ? ` for the user ${user}` : ` (top ${MAX_TOPUSERS})`}</h2>`;
buf += `<strong>Total lines: {total}</strong><br />`;
buf += `<strong>Month: ${month}:</strong><br />`;
buf += `<strong>Month: ${month}</strong><br />`;
const nextMonth = LogReader.nextMonth(month);
const prevMonth = LogReader.prevMonth(month);
if (Monitor.logPath(`chat/${roomid}/${prevMonth}`).existsSync()) {
Expand Down

0 comments on commit 950ec33

Please sign in to comment.