mirror of
https://github.com/onionshare/onionshare.git
synced 2024-12-25 15:29:42 -05:00
Removes trailing slash from directories inside directories
This commit is contained in:
parent
e488085116
commit
6edab6877a
@ -425,10 +425,7 @@ class ShareModeWeb(SendBaseModeWeb):
|
|||||||
# Render directory listing
|
# Render directory listing
|
||||||
filenames = []
|
filenames = []
|
||||||
for filename in os.listdir(filesystem_path):
|
for filename in os.listdir(filesystem_path):
|
||||||
if os.path.isdir(os.path.join(filesystem_path, filename)):
|
filenames.append(filename)
|
||||||
filenames.append(filename + "/")
|
|
||||||
else:
|
|
||||||
filenames.append(filename)
|
|
||||||
filenames.sort()
|
filenames.sort()
|
||||||
return self.directory_listing(filenames, path, filesystem_path)
|
return self.directory_listing(filenames, path, filesystem_path)
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user