You've already forked immich
mirror of
https://github.com/immich-app/immich.git
synced 2025-08-09 23:17:29 +02:00
fix(server): fix import path truthiness check (#16570)
This commit is contained in:
committed by
GitHub
parent
75c9f63757
commit
49d393216a
@@ -121,7 +121,7 @@
|
||||
};
|
||||
|
||||
const handleAddImportPath = () => {
|
||||
if (!updateLibraryIndex || !importPathToAdd) {
|
||||
if (updateLibraryIndex === null || !importPathToAdd) {
|
||||
return;
|
||||
}
|
||||
|
||||
|
Reference in New Issue
Block a user