add latest date and podcast:guid

This commit is contained in:
2026-04-27 11:15:55 +02:00
parent 7ed0a1863d
commit 6e33ad712e
4 changed files with 18 additions and 3 deletions
+9
View File
@@ -190,4 +190,13 @@ utils['total_files_dir'] = function( path )
return t
end
utils['rss_date_now'] = function()
local popen = io.popen
local pdate = popen('date "+%a, %-d %b %Y %H:%M:%S %Z"')
for date in pdate:lines() do
return date
end
pdate:close()
end
return utils