aboutsummaryrefslogtreecommitdiff
path: root/telem.lua
diff options
context:
space:
mode:
Diffstat (limited to 'telem.lua')
-rwxr-xr-xtelem.lua2
1 files changed, 1 insertions, 1 deletions
diff --git a/telem.lua b/telem.lua
index 9c9960a..5c57635 100755
--- a/telem.lua
+++ b/telem.lua
@@ -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)