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
Chrome version 66 (in OSX) has changed the name of the "secure" column in the cookies table to "is_secure", so Chrome.load() fails with (sqlite3.OperationalError: no such column: secure).
Culprit:
cur.execute('SELECT host_key, path, secure, expires_utc, name, value, encrypted_value '
'FROM cookies WHERE host_key like "%{}%";'.format(self.domain_name))
The text was updated successfully, but these errors were encountered:
Chrome version 66 (in OSX) has changed the name of the "secure" column in the cookies table to "is_secure", so Chrome.load() fails with (sqlite3.OperationalError: no such column: secure).
Culprit:
cur.execute('SELECT host_key, path, secure, expires_utc, name, value, encrypted_value '
'FROM cookies WHERE host_key like "%{}%";'.format(self.domain_name))
The text was updated successfully, but these errors were encountered: