You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
eg. IsPathInDir("/media/.previews", "/media") and IsPathInDir("/media","/media/.previews") both return true, the first one shouldn't. .previews is in media, media is not in .previews.
Took me quite a while to work out why my scanning stopped working, because it wont scan /media because due to PR#1118 and the above, it stopped scanning /media, when it should've just stopped scanning /media/.previews
the check inside IsPathInDir should be changed to if strings.HasPrefix(rel, "..") {
The text was updated successfully, but these errors were encountered:
From Discord:
The text was updated successfully, but these errors were encountered: