Skip to content

Commit b531e67

Browse files
Fixing string.find not using plain mode
1 parent 10bde20 commit b531e67

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

filemanager2.lua

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -791,7 +791,7 @@ local function try_uncompress_path(path)
791791
while(j <= #scanlist)
792792
do
793793
if scanlist[j].dirmsg == Icons()['dir'] and
794-
string.find(clean_path, scanlist[j].abspath) then
794+
string.find(clean_path, scanlist[j].abspath, 1, true) then
795795

796796
uncompress_target(j)
797797
end

0 commit comments

Comments
 (0)