Côme Chilliet

Results 358 comments of Côme Chilliet

> Just for my understanding: Do we know, why the paradigm has changed from setting `accepted=1` on the group share (as it was before), but letting it at `0` and...

@szaimen This is still valid, we have no mechanism to handle LDAP groups on first login before background job kicks in.

@st3iny We can close this now, right?

Hello, Yes, this warning is new to PHP 8.1 but should still not happen. The error comes from some code calling isPartialFile with null instead of a string, ~can you...

So, looking at the trace: 1. OCA\DAV\Connector\Sabre\Directory->createFile("10485760", null) is called which attempts to create a file 2. put(null) is called on the node instance just created 3. That calls emitPostHooks(false),...

@solracsf @killerb77 Can you try strict typing $path property in both lib/private/Files/FileInfo.php and apps/dav/lib/Connector/Sabre/Node.php and see if that brings a different error? Like this: ``` diff --git a/apps/dav/lib/Connector/Sabre/Node.php b/apps/dav/lib/Connector/Sabre/Node.php index...

@killerb77 Can you try applying the following patch: ``` diff --git a/apps/dav/lib/Connector/Sabre/File.php b/apps/dav/lib/Connector/Sabre/File.php index 94632b265db..a70cbcf6b01 100644 --- a/apps/dav/lib/Connector/Sabre/File.php +++ b/apps/dav/lib/Connector/Sabre/File.php @@ -458,6 +458,16 @@ class File extends Node implements IFile...

@killerb77 "bmw" is a user id? Is it the one of the user uploading the file? Is the operation an upload into a shared folder or some special case like...

I am able to reproduce this. It’s when chunk uploading a big file I think, the file is in uploads folder, and it tries to trigger hook on this path,...