Merge pull request #988 from WS64/master

Bugfix
pull/993/head v2014.10.14-nightly
Huang Xin 10 years ago
commit 6af7652002

@ -261,9 +261,9 @@ function Search:find(option)
self.data[i][self.tags2] = ""
self.data[i][self.tags3] = ""
end
while line ~= " ], " do
while line ~= " ], " and line ~= " ]" do
line = f:read()
if line ~= " ], " then
if line ~= " ], " and line ~= " ]" then
self.data[i][s] = self.data[i][s] .. "," .. ReplaceHexChars(line,8,3)
if s == self.authors then
self.data[i][self.authors2] = self.data[i][self.authors2] .. " & " .. ReplaceHexChars(line,8,3)

Loading…
Cancel
Save