Fix bug
This commit is contained in:
parent
6303ee76b6
commit
08d0235608
|
@ -11,5 +11,5 @@ FROM
|
|||
LEFT JOIN magic ON file.path = magic.path
|
||||
LEFT JOIN hash ON file.path = hash.path
|
||||
WHERE
|
||||
file.path LIKE "/home/%/Downloads/%%"
|
||||
OR file.path LIKE "/Users/%/Downloads/%%"
|
||||
file.path LIKE "/home/%/Downloads/%"
|
||||
OR file.path LIKE "/Users/%/Downloads/%"
|
||||
|
|
|
@ -6,5 +6,5 @@
|
|||
SELECT
|
||||
*
|
||||
FROM
|
||||
socket_events;
|
||||
socket_events
|
||||
WHERE time > (strftime('%s', 'now') -600)
|
||||
|
|
Loading…
Reference in New Issue