dsims
(Daniel)
April 2, 2025, 12:41pm
1
If I put quotes in my Discourse Calendar (and Event) event name like Event name: RSVP “Going” to join
On save causes a 500 error to PUT /posts/123
(likely due to broken markdown) but the bad part is that all the attendees appear to be cleared from the event.
Note: this was used with Discourse Livestream but I assume that is unrelated.
3 Likes
sam
(Sam Saffron)
April 2, 2025, 11:37pm
2
Yikes, we will have a look at this some time in the coming week.
Given you are getting a 500, can you look in /logs
and let us know what you see there?
dsims
(Daniel)
April 3, 2025, 3:11am
3
I think what is happening is the unescaped quotes break the event markup, so no event is detected and the event is destroyed . Then when I remove the quotes and hit save again, a new event is created.
The 500 error during serialization is probably a related side-effect.
NoMethodError (undefined method `end_of_day' for nil)
plugins/discourse-calendar/app/models/discourse_post_event/event.rb:93:in `expired?'
plugins/discourse-calendar/app/models/discourse_post_event/event.rb:279:in `can_user_update_attendance'
plugins/discourse-calendar/app/serializers/discourse_post_event/event_serializer.rb:93:in `can_update_attendance'
(eval at /var/www/discourse/vendor/bundle/ruby/3.3.0/gems/active_model_serializers-0.8.4/lib/active_model/serializer.rb:467):4:in `_fast_attributes'
active_model_serializers (0.8.4) lib/active_model/serializer.rb:468:in `rescue in attributes'
active_model_serializers (0.8.4) lib/active_model/serializer.rb:455:in `attributes'
active_model_serializers (0.8.4) lib/active_model/serializer.rb:480:in `_serializable_hash'
active_model_serializers (0.8.4) lib/active_model/serializer.rb:359:in `serializable_hash'
active_model_serializers (0.8.4) lib/active_model/serializer.rb:347:in `as_json'
activesupport (7.2.2.1) lib/active_support/json/encoding.rb:23:in `encode'
activesupport (7.2.2.1) lib/active_support/json/encoding.rb:23:in `encode'
activesupport (7.2.2.1) lib/active_support/core_ext/object/json.rb:42:in `to_json'
active_model_serializers (0.8.4) lib/active_model/serializer.rb:331:in `to_json'
multi_json (1.15.0) lib/multi_json/adapters/oj.rb:56:in `dump'
multi_json (1.15.0) lib/multi_json/adapters/oj.rb:56:in `dump'
multi_json (1.15.0) lib/multi_json/adapter.rb:25:in `dump'
multi_json (1.15.0) lib/multi_json.rb:139:in `dump'
app/controllers/application_controller.rb:506:in `render_json_dump'
app/controllers/posts_controller.rb:301:in `update'
1 Like