Use Content-Type: text/calendar for ics files

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2021-10-18 16:50:34 +02:00
parent d971e015a6
commit 03dbceea5a
No known key found for this signature in database
GPG Key ID: A061B9DDE0CA0773
1 changed files with 1 additions and 1 deletions

View File

@ -129,7 +129,7 @@ class ICalService {
header('Expires: 0');
header('Cache-Control: must-revalidate');
header('Pragma: public');
header("Content-Type: text/plain");
header("Content-Type: text/calendar");
echo $ical_text;
exit;
}