👕
This commit is contained in:
parent
ec10338364
commit
9aac8967aa
1 changed files with 3 additions and 3 deletions
|
@ -1,7 +1,7 @@
|
|||
const fs = require('fs')
|
||||
const path = require('path')
|
||||
const { remote } = require('electron')
|
||||
const { app } = remote;
|
||||
const { app } = remote
|
||||
|
||||
const getChromeStoragePath = (storageType, extensionId) => {
|
||||
return path.join(
|
||||
|
@ -9,7 +9,7 @@ const getChromeStoragePath = (storageType, extensionId) => {
|
|||
}
|
||||
const readChromeStorageFile = (storageType, extensionId) => {
|
||||
const filePath = getChromeStoragePath(storageType, extensionId)
|
||||
if(!fs.existsSync(filePath)) return null
|
||||
if (!fs.existsSync(filePath)) return null
|
||||
return fs.readFileSync(filePath, 'utf8')
|
||||
}
|
||||
|
||||
|
@ -34,7 +34,7 @@ const getStorage = (storageType, extensionId) => {
|
|||
|
||||
const setStorage = (storageType, extensionId, storage) => {
|
||||
const json = JSON.stringify(storage)
|
||||
const data = writeChromeStorageFile(storageType, extensionId, json)
|
||||
writeChromeStorageFile(storageType, extensionId, json)
|
||||
}
|
||||
|
||||
const scheduleCallback = (items, callback) => {
|
||||
|
|
Loading…
Reference in a new issue