mirror of
https://github.com/immich-app/immich
synced 2025-11-14 17:36:12 +00:00
fix(server): fix import path truthiness check (#16570)
This commit is contained in:
parent
75c9f63757
commit
49d393216a
1 changed files with 1 additions and 1 deletions
|
|
@ -121,7 +121,7 @@
|
||||||
};
|
};
|
||||||
|
|
||||||
const handleAddImportPath = () => {
|
const handleAddImportPath = () => {
|
||||||
if (!updateLibraryIndex || !importPathToAdd) {
|
if (updateLibraryIndex === null || !importPathToAdd) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue