feat: try to reset user array at start of onStart*

I don't think it works
pull/177/head
tycrek 1 year ago
parent 4c4009207f
commit a774ab311b
No known key found for this signature in database
GPG Key ID: FF8A54DCE404885A

@ -139,6 +139,9 @@ export const setUserPassword = (unid: string, password: string): Promise<User> =
* Called by ass.ts on startup
*/
export const onStart = (authFile = 'auth.json') => new Promise((resolve, reject) => {
// Reset user array (https://stackoverflow.com/questions/1232040/how-do-i-empty-an-array-in-javascript#1232046)
// ! I don't think this works properly..?
users.splice(0, users.length);
const file = path(authFile);
log.debug('Reading', file);

Loading…
Cancel
Save