Browse Source

Fix messages sent at exactly midnight appearing twice

master
JustAnotherArchivist 1 year ago
parent
commit
ba7b895931
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      irclog.py

+ 1
- 1
irclog.py View File

@@ -1052,7 +1052,7 @@ class WebServer:
]) + '</p>'
#TODO Implement this in a better way...
fn = date.strftime('%Y-%m.log')
lines = list(self._raw_to_lines(self._file_iter_with_path(os.path.join(self.config['storage']['path'], request.match_info["path"], fn), request.match_info["path"]), filter = lambda path, ts, command, content: dateStart <= ts <= dateEnd))
lines = list(self._raw_to_lines(self._file_iter_with_path(os.path.join(self.config['storage']['path'], request.match_info["path"], fn), request.match_info["path"]), filter = lambda path, ts, command, content: dateStart <= ts < dateEnd))
return aiohttp.web.Response(
body = ''.join([
'<!DOCTYPE html><html lang="en">',


Loading…
Cancel
Save