1
0
mirror of https://github.com/lxsang/antd-web-apps synced 2024-11-19 18:08:21 +01:00

remove base64 decode

This commit is contained in:
lxsang 2020-06-17 21:05:01 +02:00
parent ffba8f7c7c
commit 2c95e7d4a1
2 changed files with 2 additions and 2 deletions

View File

@ -94,7 +94,7 @@ function PostController:id(pid)
return self:notfound("No post found")
end
data = data[1]
data.rendered = bytes.__tostring(std.b64decode(data.rendered)):gsub("%%", "%%%%")
data.rendered = data.rendered:gsub("%%", "%%%%")
local a, b = data.rendered:find("<[Hh]1[^>]*>")
if a then
local c, d = data.rendered:find("</[Hh]1>")

View File

@ -39,7 +39,7 @@
<div class = "blogentry">
<div class = "shortcontent">
<?lua
local content = bytes.__tostring(std.b64decode(data.rendered)):gsub("%%","%%%%")
local content = data.rendered:gsub("%%","%%%%")
local r, s = content:find("(<hr/?>)")
local title = nil
if r then