fix warning

This commit is contained in:
max/sooulix 2025-02-12 11:10:21 +01:00
parent 59e5ac419b
commit 402d9d8928

View File

@ -72,6 +72,11 @@ function get_struct($dir, $line)
function read_tsv($dir, $path)
{
if (!is_file($path))
{
return [];
}
$lines = explode("\n", file_get_contents($path));
$shares = [];