Parcourir la source

Fix messages sent at exactly midnight appearing twice

master
JustAnotherArchivist il y a 1 an
Parent
révision
ba7b895931
1 fichiers modifiés avec 1 ajouts et 1 suppressions
  1. +1
    -1
      irclog.py

+ 1
- 1
irclog.py Voir le fichier

@@ -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">',


Chargement…
Annuler
Enregistrer