Fix Calendar scheduling: Wrong RSVP base URL is used
This commit is contained in:
@@ -28,6 +28,7 @@ If you are upgrading from v0.16.x, replace the binary (or run `docker pull`). If
|
|||||||
- Meilisearch: Limit the text search scope using `attributesToSearchOn`.
|
- Meilisearch: Limit the text search scope using `attributesToSearchOn`.
|
||||||
- CalDAV: `calendar-query` REPORT returns invalid HTTP `404` when no events match the query.
|
- CalDAV: `calendar-query` REPORT returns invalid HTTP `404` when no events match the query.
|
||||||
- Snowflake past id generation fails when the provided duration is longer than 4 years.
|
- Snowflake past id generation fails when the provided duration is longer than 4 years.
|
||||||
|
- Calendar scheduling: Wrong RSVP base URL is used.
|
||||||
|
|
||||||
## [0.16.11] - 2026-06-25
|
## [0.16.11] - 2026-06-25
|
||||||
|
|
||||||
|
|||||||
@@ -128,7 +128,7 @@ impl GroupwareConfig {
|
|||||||
.map(|d| d.into_inner().as_secs()),
|
.map(|d| d.into_inner().as_secs()),
|
||||||
itip_http_rsvp_url: if sched.http_rsvp_enable {
|
itip_http_rsvp_url: if sched.http_rsvp_enable {
|
||||||
if let Some(url) = sched
|
if let Some(url) = sched
|
||||||
.http_rsvp_template
|
.http_rsvp_url
|
||||||
.as_deref()
|
.as_deref()
|
||||||
.map(|v| v.trim().trim_end_matches('/'))
|
.map(|v| v.trim().trim_end_matches('/'))
|
||||||
.filter(|v| !v.is_empty())
|
.filter(|v| !v.is_empty())
|
||||||
|
|||||||
Reference in New Issue
Block a user