Share is broken on >= 0.760
Bug #548743 reported by
netcelli-tux
This bug affects 1 person
| Affects | Status | Importance | Assigned to | Milestone | |
|---|---|---|---|---|---|
| DC++ |
Fix Released
|
High
|
Steven Sheehy | ||
Bug Description
Share doesn't work anymore with Last core on Linux. That is because of new check for hidden files (http://
d_name memeber of dirent struct returns always "." when called on a folder so DirData::isHidden() return always true. That means no folder can be added to share and also current shared folders aren't shared if "Share hidden files" is false.
Related branches
To post a comment you must log in.

Guess for non-win32 there's an easier way to decide if the directory is hidden or not, just test the first char of the directory name for period, like in the attached patch (not tested). Any thoughts?