diff options
Diffstat (limited to 'telem.lua')
-rwxr-xr-x | telem.lua | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -114,7 +114,7 @@ function get_posts(thread) if postfile == "subject" then goto continue end local post = {} post.filename = path.join(thread.directory, postfile) - local _, _, timestamp, author = string.find(postfile, "(%d+)-(%a+)") + local _, _, timestamp, author = string.find(postfile, "(%d+)-(%g+)") post.timestamp = tonumber(timestamp) post.author = author table.insert(posts, post) |