made setattr() convert values to strings

This commit is contained in:
Izaya 2017-09-15 15:59:43 +10:00 committed by Izaya
parent 4b89084432
commit 83ed6019cd
1 changed files with 1 additions and 1 deletions

View File

@ -36,7 +36,7 @@ do
fsattr[fn] = {}
setmetatable(fsattr[fn],{__index=dfsattr})
end
fsattr[fn][k] = v
fsattr[fn][k] = tostring(v)
end
function fs.mount(mp,pr)
fT[mp] = pr