Improved debug info

This commit is contained in:
M66B
2024-07-27 22:22:37 +02:00
parent 73201f7e81
commit 31c16abbc6

View File

@@ -2468,8 +2468,10 @@ public class HtmlHelper {
Uri uri = FileProviderEx.getUri(context, BuildConfig.APPLICATION_ID, file, attachment.name);
img.attr("src", uri.toString());
Log.i("Inline image uri=" + uri);
} else
} else {
img.attr("src", ImageHelper.getDataUri(file, attachment.type));
Log.i("Inline image type=" + attachment.type);
}
}
}
}