Torrent file content sort fix (#119)

This commit is contained in:
Roman Kelesidis 2023-04-02 13:41:35 +07:00 committed by GitHub
parent 147879df0e
commit c4fe5fb0e0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -133,7 +133,7 @@ class torrent
$cur_files_ary[] = $this->build_file_item($name, $length); $cur_files_ary[] = $this->build_file_item($name, $length);
} }
} }
@natsort($cur_files_ary); asort($cur_files_ary);
} }
else else
{ {