File tree Expand file tree Collapse file tree 1 file changed +1
-3
lines changed
Expand file tree Collapse file tree 1 file changed +1
-3
lines changed Original file line number Diff line number Diff line change @@ -141,8 +141,7 @@ export function getFavoritesReport(): string {
141141 * ```
142142 */
143143export function getRecentSearch ( timestamp : number ) : string {
144- const capabilities = getCapabilities ( ) as { dav ?: { search_supports_creation_time ?: boolean , search_supports_upload_time ?: boolean } }
145- const supportsCreationTime = capabilities . dav ?. search_supports_creation_time
144+ const capabilities = getCapabilities ( ) as { dav ?: { search_supports_upload_time ?: boolean } }
146145 const supportsUploadTime = capabilities . dav ?. search_supports_upload_time
147146
148147 return `<?xml version="1.0" encoding="UTF-8"?>
@@ -152,7 +151,6 @@ export function getRecentSearch(timestamp: number): string {
152151 <d:select>
153152 <d:prop>
154153 ${ getDavProperties ( ) }
155- ${ supportsCreationTime ? '<nc:creation_time/>' : '' }
156154 </d:prop>
157155 </d:select>
158156 <d:from>
You can’t perform that action at this time.
0 commit comments