Richtext field with Image in subform

Richtext field with Image in subform

I used below script to fetch the Product image into a richtext field and it works, but when i use my mobile, the image wont load, anyone knows why?

product_info = Product_Master[ID = row.Product_Code];

/*Image field has two types of output when queried through the script. 
The uploaded file doesn't return the correct script like the one that 
was stored with the link. So, there is an additional script involved to get the correct image URL*/

//Remember, Product_Image used below is the Image field's deluge name in the Products Form

product_image_display = product_info.Photo;
if (product_image_display.contains("sharedBy"))
{
src = product_image_display.getSuffix("src");
src = src.getPrefix("border").trim();
src = src.getSuffix("\"").trim();
src = src.getPrefix("\"").trim();
if (src.contains("sharedBy"))
{
image_name = src.getSuffix("image/").trim();
src = " https://creator.zoho.com" + zoho.appuri + "Product_Master_Report/" + product_info.ID + "/Photo/image-download/"+ image_name;
product_image_display = "<img style='width:250px;'  class='thumbnail img-responsive' src='" + src + "' />";
}
}

row.Rich_Text = product_image_display;



regards,
Jeff