fixed: make export/import work with blob-files again

also add some more logging.
This commit is contained in:
holger krekel
2019-07-03 20:02:05 +02:00
parent 191d11e719
commit adcb9d6069
4 changed files with 22 additions and 0 deletions

View File

@@ -1258,6 +1258,9 @@ pub unsafe fn dc_write_file(
) -> libc::c_int {
let mut success = 0;
let pathNfilename_abs = dc_get_abs_path(context, pathNfilename);
info!(context, 0, "trying to write file {:?}", pathNfilename);
if pathNfilename_abs.is_null() {
return 0;
}