@Mathia Van De Poel Thanks for reaching out. Azure Functions uses the NCronTab library to interpret NCRONTAB expressions. NCRONTAB expression supports both five field and six field formats. The sixth field position is a value for seconds which is placed at the beginning of the expression. For more details you can refer to this document.
Please confirm if you are using the five or six field formats as per information it looks like your expression is 0 1 *
You should leverage 0 0 1 * * *
so it executes your function app at 1:00 am UTC every day. In case if you already using the five field and six field formats then I will suggest you to navigate to the Diagnose and solve problems to check if there was any exception/error while executing your function app.