-
Notifications
You must be signed in to change notification settings - Fork 241
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
unable to delete meeting setup via CalDAV #6452
Comments
Please provide webserver logs, nextcloud logs and browser logs to see what the request does. |
The nextcloud.log does not log anything during the event. The Web server log, logs
How do you pull Web Browser logs, Ive never heard of any logs from a browser. |
Open the developer tools (F12), checkout the console tab, perform the event deletion and paste the new lines that came up. You can also check the Network tab to see what's the request status. |
Thank you for the instructions.
|
Ok, this is not part of it. This was caused by my method of naming the ics file. |
Steps to reproduce
Im developing this caldav integration for/on N8N so I could be doing something wrong.
do a put request to the host https://nextcloud.<mydomain>.com/remote.php/dav/calendars/d78da3f8-1d90-11ef-a680-bc2411621666/personal/event.ics
Send the following as a calendar event (text/calendar) (basic authorization)
BEGIN:VCALENDAR VERSION:2.0 PRODID:-//n8n Integration//CalDAV Event//EN BEGIN:VEVENT UID:1730286920002 DTSTAMP:20241030T111520Z DTSTART:20241102T113000Z DTEND:20241102T120000Z SUMMARY:Discuss the Bug in Nextcloud LOCATION:Home DESCRIPTION:Discuss the Bug in Nextcloud END:VEVENT END:VCALENDAR
go to Nextcloud and try to delete the event.
Expected behavior
I would expect it to delete the event when I click delete.
Actual behaviour
the spinning icon shows and never goes away. Event is not removed from calendar.
Calendar app version
5.0.1
CalDAV-clients used
Custom Development my me.
Browser
Chrome 126.0.6478.126
Client operating system
Fedora Core
Server operating system
Using official Docker image
Web server
None
Database engine version
None
PHP engine version
None
Nextcloud version
30.0.1.2
Updated from an older installed version or fresh install
Updated from an older version
List of activated apps
Nextcloud configuration
{
"system": {
"htaccess.RewriteBase": "/",
"memcache.local": "\OC\Memcache\APCu",
"apps_paths": [
{
"path": "/var/www/html/apps",
"url": "/apps",
"writable": false
},
{
"path": "/var/www/html/custom_apps",
"url": "/custom_apps",
"writable": true
}
],
"upgrade.disable-web": true,
"instanceid": "REMOVED SENSITIVE VALUE",
"passwordsalt": "REMOVED SENSITIVE VALUE",
"secret": "REMOVED SENSITIVE VALUE",
"trusted_domains": [
"192.168.10.7:10070",
"nextcloud.xganon.com"
],
"datadirectory": "REMOVED SENSITIVE VALUE",
"dbtype": "mysql",
"version": "30.0.1.2",
"overwrite.cli.url": "https://nextcloud.<mydomain>.com",
"overwriteprotocol": "https",
"dbname": "REMOVED SENSITIVE VALUE",
"dbhost": "REMOVED SENSITIVE VALUE",
"dbport": "",
"dbtableprefix": "oc_",
"mysql.utf8mb4": true,
"dbuser": "REMOVED SENSITIVE VALUE",
"dbpassword": "REMOVED SENSITIVE VALUE",
"installed": true,
"mail_from_address": "REMOVED SENSITIVE VALUE",
"mail_smtpmode": "smtp",
"mail_sendmailmode": "smtp",
"mail_domain": "REMOVED SENSITIVE VALUE",
"mail_smtphost": "REMOVED SENSITIVE VALUE",
"mail_smtpport": "25",
"ldapProviderFactory": "OCA\User_LDAP\LDAPProviderFactory",
"maintenance": false,
"loglevel": 2
}
}
Web server error log
No response
Log file
No response
Browser log
No response
Additional info
Im using N8N and Ollama to create a personal assistant that can manage my calendar. There is no CalDav node for N8N so Im doing it with a Function node to format the CalDAV message then passing it off to an HTTP-API node to handle the calls to the CalDAV address. This is a personal system in Dev so I can do adjustments and test if needed.
I have also noticed that any event sent via CalDAV seems to update the start and end time of the one event instead of creating a new event. Even though they have different UID, SUMMERY, and DESCRIPTION. Im noting it here because it could be related, if not Ill open another bug for that one.
The text was updated successfully, but these errors were encountered: