You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Line 148, creating a backup of history file
I would recommend removing the if statement. I didn't completely debug it, but I can never get new history out of the plugin unless this line is removed.
main.py
Line 35: if qs[0] == 'vsc':
I would remove this because it generates a error in the error.log for index out of range, and don't get exact line error from logging module.
would add Log.error(traceback.format_exc())
under line 69
say something like the below to evaluate first
if 'vsc' in qs:
The text was updated successfully, but these errors were encountered:
browserhistory.py
Line 148, creating a backup of history file
I would recommend removing the if statement. I didn't completely debug it, but I can never get new history out of the plugin unless this line is removed.
main.py
Line 35: if qs[0] == 'vsc':
I would remove this because it generates a error in the error.log for index out of range, and don't get exact line error from logging module.
would add Log.error(traceback.format_exc())
under line 69
say something like the below to evaluate first
if 'vsc' in qs:
The text was updated successfully, but these errors were encountered: