Remove history NUL byte logging
It just produces a lot of logging noise, and I still have no idea what to do about it...
This commit is contained in:
parent
a38e6be52a
commit
ed10cd14d6
@ -88,12 +88,8 @@ class Entry:
|
||||
if not url.isValid():
|
||||
raise ValueError("Invalid URL: {}".format(url.errorString()))
|
||||
|
||||
if atime.startswith('\0'):
|
||||
log.init.debug(
|
||||
"Removing NUL bytes from entry {!r} - see "
|
||||
"https://github.com/The-Compiler/qutebrowser/issues/"
|
||||
"670".format(data))
|
||||
atime = atime.lstrip('\0')
|
||||
# https://github.com/The-Compiler/qutebrowser/issues/670
|
||||
atime = atime.lstrip('\0')
|
||||
|
||||
if '-' in atime:
|
||||
atime, flags = atime.split('-')
|
||||
|
Loading…
Reference in New Issue
Block a user