FIX: dates should also store recurring (#6814)

This commit is contained in:
Joffrey JAFFEUX 2018-12-26 23:35:10 +01:00 committed by GitHub
parent 2b006c0429
commit 8ce76460ed
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ after_initialize do
date = {}
cooked_date.attributes.values.each do |attribute|
data_name = attribute.name&.gsub('data-', '')
if data_name && ['date', 'time', 'timezone'].include?(data_name)
if data_name && ['date', 'time', 'timezone', 'recurring'].include?(data_name)
unless attribute.value == 'undefined'
date[data_name] = CGI.escapeHTML(attribute.value || "")
end