(path)
| 225 | } |
| 226 | |
| 227 | async function getCompleted(path) |
| 228 | { |
| 229 | if(!path) return false; |
| 230 | |
| 231 | const file = fileManager.file(path); |
| 232 | file.updateConfig({sort: false}); |
| 233 | const completed = await _getCompleted(path, file, true); |
| 234 | file.destroy(); |
| 235 | |
| 236 | return completed; |
| 237 | } |
| 238 | |
| 239 | async function _findReadingProgressPaths(path, file) |
| 240 | { |
no test coverage detected