dhoard
13 years agoVisitor
Poster screen caching bug ?
I'm running a Roku LT (firmware 4.0 - build 5060) and seeing some weird caching issues for poster images. I'm doing the standard cache busting (adding a query string parameter ... i.e. ?v=<some changing value>) yet the poster image is not being retrieved. I first validated the correct image was being returned via a browser. I then used Wireshark and verified that the request is not being made from the Roku.
... has anyone else seen this issue ?
-Doug
Here is the code ..
... has anyone else seen this issue ?
-Doug
Here is the code ..
movieInfoArray = ParseJson(response)
dt = CreateObject("roDateTime")
tss = dt.AsSeconds().ToStr()
if movieInfoArray <> invalid
for i = 0 to (movieInfoArray.Count() - 1)
movieInfoArray[i].hdPosterURL = movieInfoArray[i].hdPosterURL + "?v=" + tss
movieInfoArray[i].sdPosterURL = movieInfoArray[i].sdPosterURL + "?v=" + tss
print "hdPosterURL = " + movieInfoArray[i].hdPosterURL
print "sdPosterURL = " + movieInfoArray[i].sdPosterURL
end for
screen.SetContentList(movieInfoArray)
end if