Minor media player initialization fix.

This commit is contained in:
Dermot Duffy
2023-03-31 19:14:28 -07:00
parent 34c49b6d5b
commit 2c94907e78
2 changed files with 9 additions and 9 deletions
@@ -62,7 +62,7 @@ const MOTIONEYE_REPL_SUBSTITUTIONS: Record<string, string> = {
'%d': 'dd',
'%H': 'HH',
'%M': 'mm',
'%S': 'SS',
'%S': 'ss',
};
const MOTIONEYE_REPL_REGEXP = new RegExp(/(%Y|%m|%d|%H|%M|%S)/g);