mirror of
https://github.com/karl0ss/JDRssDownloader.git
synced 2025-04-27 03:49:23 +01:00
14 lines
424 B
JavaScript
14 lines
424 B
JavaScript
const fs = require('fs')
|
|
|
|
function checkDownloadHistory(urlObj) {
|
|
history = JSON.parse(fs.readFileSync('./cache/downloadHistory.json'));
|
|
if (history.includes(urlObj.fileName)) {
|
|
return true
|
|
} else {
|
|
history.push(urlObj.fileName)
|
|
fs.writeFileSync('./cache/downloadHistory.json', JSON.stringify(history));
|
|
return false
|
|
}
|
|
}
|
|
|
|
module.exports = { checkDownloadHistory } |