Plex Server scans for wallets?

Thats good to know.

I just saw that such a case existed in the past:

Another info:
I checked the SQLite DB and found the table activities. I don’t know when exactly a new record is created. But just wanna let you know, that there were no entries during this time.


The following SQL was used:

SELECT id, type, title, subtitle, started_at, finished_at, DATETIME(started_at, 'unixepoch', 'localtime') as START_DATE
FROM activities
WHERE started_at >  1644793200
AND started_at < 1644966000
ORDER BY started_at

The activity at 4am makes sense to me, because there started the maintenance window (4-6am every day).

Also in the media_parts table:

SELECT *
FROM media_parts
WHERE file LIKE '/root%'

Nothing is found for the /root folder.

If you know any other table that I should check, just let me know.