🚀 dashboard v0.13.30

This commit is contained in:
naiba
2022-06-22 12:53:21 +08:00
parent c56de09fd2
commit f15bd9c6dd
4 changed files with 6 additions and 5 deletions

View File

@@ -98,7 +98,7 @@ func SplitIPAddr(v4v6Bundle string) (string, string, string) {
}
func IsDirEmpty(name string) (bool, error) {
f, err := os.Open(filepath.Clean(name))
f, err := os.Open(filepath.Join("./", filepath.Clean(name)))
if err != nil {
return false, err
}