File metadata not updating since the 23rd

First, search the help docs and this forum. Maybe your question has been answered! The debugging steps can help, too. Still stuck? Delete this line and proceed.

What I’m trying to do

I use dataview and my queries have been blank recently so I did some digging. Starting on the 23rd of December my metadata in my files is no longer updating. This is breaking all of my new dataview queries in my daily notes since new notes don’t have any metadata applied.

Things I have tried

Table file.mday FROM ""

^ Returning files all the way up to the 22nd

=this.metadata
=this.file.name
=this.file.ctime
=this.file.mtime

^Returning nothing (-) for my current file today

List FROM "" WHERE file.cday = date("2024-12-24") SORT file.ctime asc
List FROM "" WHERE file.mday = date(2024-12-24) SORT file.mtime asc

^ My original queries which return nothing for the 24th or 23rd

Sorry to ask, but did you actually change or create any files on the 23rd or 24th? Do you experience the same issue still?

If you still have the issue, then what is the response of the following query:

```dataview
TABLE file.mday, file.cday
WHERE (file.mday.year = 2024 AND file.mday.month = 12)
   OR (file.cday.year = 2024 AND file.cday.month  = 12)
```

I did create more files.

For some reason it seems to have just resolved itself with time.

Thank you for taking the time to respond!!