Report bulk failures to stderr

This commit is contained in:
Kovid Goyal 2025-01-25 10:24:15 +05:30
parent 0c4dae5e89
commit bb6d43d7cd
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -403,6 +403,7 @@ bulk_get_filesystem(
bulk_properties_callback->Release();
if (PyErr_Occurred()) return false;
if (FAILED(hr)) {
fprintf(stderr, "Bulk get of MTP filesystem properties failed for this folder, retrying with single gets.\n");
*retry_with_single_get = true;
return false;
}