Skip to content

Commit

Permalink
Fix an issue after upgrading to Ruby 3.2.0
Browse files Browse the repository at this point in the history
Close: #3274
  • Loading branch information
Plausible0Bug committed Jun 17, 2023
1 parent 661e3b3 commit b851fbe
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion lib/google_calendar.rb
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ def publish_as(who, details)
@logger.info("Attempting to create event for " + who)
@logger.debug details.to_yaml

event = Google::Apis::CalendarV3::Event.new(details.deep_symbolize_keys)
event = Google::Apis::CalendarV3::Event.new(**details.deep_symbolize_keys)
ret = @calendar.insert_event(
who,
event,
Expand Down

0 comments on commit b851fbe

Please sign in to comment.