simpler json-isation

thanks Alina for the suggestion
This commit is contained in:
dakkar 2024-02-03 11:29:46 +00:00
parent 990e53fee4
commit 25948c9232

View file

@ -130,11 +130,11 @@ export class ImportNotesProcessorService {
return typeof obj[Symbol.iterator] === 'function'; return typeof obj[Symbol.iterator] === 'function';
} }
private parseTwitterFile(str : string) : null | [{ tweet: any }] { private parseTwitterFile(str : string) : null | { tweet: object }[] {
const removed = str.replace(new RegExp('window\\.YTD\\.tweets\\.part0 = ', 'g'), ''); const jsonStr = str.replace(/^\s*window\.YTD\.tweets\.part0\s*=\s*/, '');
try { try {
return JSON.parse(removed); return JSON.parse(jsonStr);
} catch (error) { } catch (error) {
//The format is not what we expected. Either this file was tampered with or twitters exports changed //The format is not what we expected. Either this file was tampered with or twitters exports changed
return null; return null;