Thumb image has different behaviour on desktop and mobile

Hi all

I have a thumbnail virtual column with this code:

CONCATENATE("https://drive.google.com/thumbnail?id=", [_ID])

where [_ID] is Google ID like this: 1xyojOgE5IdAvZeB4Qw4zZRJzLVKIhtA6

https://drive.google.com/thumbnail?id=1xyojOgE5IdAvZeB4Qw4zZRJzLVKIhtA6

The two prints bellow: Desktop (ok) and Mobile (not ok)

mobile.jpgdesktop.png

 

Solved Solved
0 2 92
1 ACCEPTED SOLUTION

Thanks @sk 

It's seems like better. I think there are something likes cache or deploy. There is a delay to show the thumbs, both on desktop or mobile. But your code is better. Where do we get reference like those that you gave me?

View solution in original post

2 REPLIES 2

What if you try making the final URL?

CONCATENATE(
  "https://lh3.googleusercontent.com/d/",
  [_ID],
  "=s220?authuser=0"
)

 

Thanks @sk 

It's seems like better. I think there are something likes cache or deploy. There is a delay to show the thumbs, both on desktop or mobile. But your code is better. Where do we get reference like those that you gave me?

Top Labels in this Space