fix remote snaps list builder

This commit is contained in:
yggverse 2024-03-28 21:19:47 +02:00
parent 587fa26027
commit f25de548b2

View File

@ -164,6 +164,11 @@ foreach ($config->snap->storage->remote->ftp as $i => $ftp)
foreach ((array) $remote->nlist($filepath) as $filename)
{
if (is_dir($filename) || is_link($filename) || str_starts_with($filename, '.'))
{
continue;
}
$basename = basename(
$filename
);