Swift: Use the right variable name in generated code

This commit is contained in:
Jan-Erik Rediger 2021-05-25 11:41:04 +02:00 коммит произвёл Jan-Erik Rediger
Родитель ea5960e000
Коммит 188e30df7e
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -40,7 +40,7 @@ struct {{ obj.name|Camelize }}{{ suffix }}: EventExtras {
{% for item in obj|attr(name) %}
if let {{ item[0]|camelize }} = self.{{item[0]|camelize}} {
keys.append({{ loop.index - 1 }})
values.append(String(val))
values.append(String({{ item[0]|camelize }}))
}
{% endfor %}