This commit is contained in:
Axel Kittenberger 2017-01-05 10:29:38 +01:00
parent 467a69eba2
commit b7c4fe437c
1 changed files with 3 additions and 3 deletions

View File

@ -1285,7 +1285,7 @@ local InletFactory = ( function
)
local p = getPath( event )
if string.byte( path, 1 ) == 47
if string.byte( p, 1 ) == 47
then
p = string.sub( p, 2, -1 )
end
@ -1303,7 +1303,7 @@ local InletFactory = ( function
)
local p = getPath( event )
if string.byte( path, 1 ) == 47
if string.byte( p, 1 ) == 47
then
p = string.sub( p, 2, -1 )
end
@ -1321,7 +1321,7 @@ local InletFactory = ( function
)
local p = getPath( event )
if string.byte( path, 1 ) == 47
if string.byte( p, 1 ) == 47
then
p = string.sub( p, 2, -1 )
end