mirror of
https://github.com/aoout/obsidian-epub-importer.git
synced 2026-07-22 08:50:30 +00:00
Potential fix for pull request finding
Co-authored-by: Copilot Autofix powered by AI <175728472+Copilot@users.noreply.github.com>
This commit is contained in:
parent
1964d0eb24
commit
5e5b36f0d1
1 changed files with 1 additions and 1 deletions
|
|
@ -185,7 +185,7 @@ export default class EpubImporterPlugin extends Plugin {
|
|||
}
|
||||
|
||||
private getSyncImportConcurrency() {
|
||||
const raw = Math.floor(this.settings.syncImportConcurrency || 3);
|
||||
const raw = Math.floor(this.settings.syncImportConcurrency ?? 3);
|
||||
return Math.max(1, raw);
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue