Fixing bulk add bug, tag is set to "\" if no other tags are present
This commit is contained in:
@ -20,6 +20,8 @@ function add_dir(string $base): array
|
|||||||
$filename = basename($full_path);
|
$filename = basename($full_path);
|
||||||
|
|
||||||
$tags = path_to_tags($short_path);
|
$tags = path_to_tags($short_path);
|
||||||
|
if ($tags[0] == "\\")
|
||||||
|
$tags = "";
|
||||||
$result = "$short_path (".str_replace(" ", ", ", $tags).")... ";
|
$result = "$short_path (".str_replace(" ", ", ", $tags).")... ";
|
||||||
try {
|
try {
|
||||||
add_image($full_path, $filename, $tags);
|
add_image($full_path, $filename, $tags);
|
||||||
|
Reference in New Issue
Block a user