You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
If I set the "Vault backup interval (minutes)" to 35791 everything is fine.
If I set the "Vault backup interval (minutes)" to 35792 it saves the setting and tries to commit any changes as often as it can.
Relevant errors (if available)
No response
Steps to reproduce
Open settings
Go to "Obsidian Git"
Enter 35791 for "Vault backup interval (minutes)"
Wait one second
Delete the 1 at the end of "Vault backup interval (minutes)"
Append a 2 at the end of "Vault backup interval (minutes)"
Expected Behavior
Act like the setting was 35791 but wait one more minute.
Addition context
No response
Operating system
Linux
The text was updated successfully, but these errors were encountered:
The reason is the max interval duration of 2^31, which is 2147483648. And 35792 * 60 * 1000 = 2147520000 is above that. If I get the time, I will try to find a workaround for these high values.
Describe the bug
If I set the "Vault backup interval (minutes)" to 35791 everything is fine.
If I set the "Vault backup interval (minutes)" to 35792 it saves the setting and tries to commit any changes as often as it can.
Relevant errors (if available)
No response
Steps to reproduce
Expected Behavior
Act like the setting was 35791 but wait one more minute.
Addition context
No response
Operating system
Linux
The text was updated successfully, but these errors were encountered: