[x] Add back up: following error is returned when no time is set:
This is caused because now() is used and returns a float.
[x] Opening backup info also results in an error.
It seems to be caused by following code:
{ky: 'next_run', label: 'Next run at (UTC)', fn: (t) => t.slice(-1) === 'Z' ? t.slice(0, -1) : t},
Can you also check this for new_token(..) ? This method used to accept a float for the end time but while this still works in recent versions, it is marked as deprecated since long.
[x] Add back up: following error is returned when no time is set: This is caused because
now()
is used and returns a float.[x] Opening backup info also results in an error. It seems to be caused by following code:
{ky: 'next_run', label: 'Next run at (UTC)', fn: (t) => t.slice(-1) === 'Z' ? t.slice(0, -1) : t},