You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
In WebDavSqlStoreDocument constructor, when creating a new document the initial file size is set to 1 instead of zero, this causes errors in the Litmus tests.
The fix is to simply correct the line as _filesize = lastmod?.Size ?? 0; .