Skip to content

Commit

Permalink
Relax table checks for chrome history
Browse files Browse the repository at this point in the history
Some History files do not have the typed_url_sync_metadata table
  • Loading branch information
scudette authored Feb 7, 2024
1 parent f6ea341 commit ae089e6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions definitions/ChromiumBrowser_HistoryVisits.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ SQLiteIdentifyQuery: |
SELECT count(*) AS `Check`
FROM sqlite_master
WHERE type='table'
AND (name='urls' OR name='visits' OR name='downloads' OR name='segments' OR name='typed_url_sync_metadata');
SQLiteIdentifyValue: 5
AND (name='urls' OR name='visits' OR name='downloads' OR name='segments');
SQLiteIdentifyValue: 4
Categories:
- Chrome
- Browser
Expand Down

0 comments on commit ae089e6

Please sign in to comment.