shortening of noteIds to 12 characters

This commit is contained in:
azivner
2017-10-28 12:12:20 -04:00
parent a76e82e9a2
commit 966ac6f620
6 changed files with 16 additions and 14 deletions

View File

@@ -51,7 +51,7 @@ router.get('/', auth.checkApiAuth, async (req, res, next) => {
'password_derived_key_salt': await sql.getOption('password_derived_key_salt'),
'encrypted_data_key': await sql.getOption('encrypted_data_key'),
'encryption_session_timeout': await sql.getOption('encryption_session_timeout'),
'browser_id': utils.randomToken(8),
'browser_id': utils.randomString(12),
'full_load_time': utils.nowTimestamp()
});
});