mirror of
https://github.com/9001/copyparty.git
synced 2025-08-18 01:22:13 -06:00
macos bigsur breaks on symlinks in ftp listings
This commit is contained in:
parent
2997baa7cb
commit
29c212a60e
|
@ -276,7 +276,7 @@ class FtpFs(AbstractedFS):
|
||||||
|
|
||||||
def lstat(self, path: str) -> os.stat_result:
|
def lstat(self, path: str) -> os.stat_result:
|
||||||
ap = self.rv2a(path)
|
ap = self.rv2a(path)
|
||||||
return bos.lstat(ap)
|
return bos.stat(ap)
|
||||||
|
|
||||||
def isfile(self, path: str) -> bool:
|
def isfile(self, path: str) -> bool:
|
||||||
try:
|
try:
|
||||||
|
|
Loading…
Reference in a new issue