update
parent
9a8a3441f2
commit
a2b38d76fa
|
@ -3,6 +3,7 @@ package calendar
|
||||||
import (
|
import (
|
||||||
"bytes"
|
"bytes"
|
||||||
"fmt"
|
"fmt"
|
||||||
|
"strings"
|
||||||
"text/template"
|
"text/template"
|
||||||
"time"
|
"time"
|
||||||
|
|
||||||
|
@ -60,7 +61,8 @@ func ICS(cal_id string, from time.Time, to time.Time) (string, error) {
|
||||||
if err := tmpl.Execute(buf, cal); err != nil {
|
if err := tmpl.Execute(buf, cal); err != nil {
|
||||||
return "", err
|
return "", err
|
||||||
}
|
}
|
||||||
return buf.String(), nil
|
|
||||||
|
return strings.ReplaceAll(buf.String(), "\n", "\r\n"), nil
|
||||||
}
|
}
|
||||||
|
|
||||||
func icstime(t time.Time) string {
|
func icstime(t time.Time) string {
|
||||||
|
|
Loading…
Reference in New Issue