Module:YouTubeSubscribers: Difference between revisions

Content deleted Content added
refactor
handle less precise dates
Line 213:
local dateString = yt_year .. "|"
-- construct YYYY|mm|dd date string
if yt_month and yt_month ~= 0 then
dateString = dateString .. yt_month .. "|"
if yt_day and yt_day ~= 0 then
dateString = dateString .. yt_day
end