Use base64url digest

This commit is contained in:
smitten 2023-12-31 09:13:51 -05:00
parent e9428a5a05
commit 327694d4cf
No known key found for this signature in database
GPG Key ID: 1DDD22F13552A07A
1 changed files with 1 additions and 1 deletions

View File

@ -472,7 +472,7 @@ export class ImportNotesProcessorService {
const slashdex = file.url.lastIndexOf('/');
const filename = file.url.substring(slashdex + 1);
const hash = crypto.createHash('md5');
const urlHash = hash.update(file.url).digest('hex');
const urlHash = hash.update(file.url).digest('base64url');
const name = `${urlHash}-${filename}`;
const [filePath, cleanup] = await createTemp();