Roll20 uses cookies to improve your experience on our site. Cookies enable you to enjoy certain features, social sharing functionality, and tailor message and display ads to your interests on our site and others. They also help us understand how our site is being used. By continuing to use our site, you consent to our use of cookies. Update your cookie preferences .
×
Create a free account

Error in the WFRP 4th edition Character Sheet

Hi, sorry to make this topic. But the WFRP 4th edition sheet is not loading certain images properly
1760564080

Edited 1760564180
Gauss
Forum Champion
Hi Alasdair M-D,  Are you in the UK?  The character sheet author might have hosted the images on imgur, if so they are blocked to UK users.  If this is the case you can bypass this by using a VPN until the character sheet author moves the images to non-imgur storage, or until the UK and Imgur figure out their deal. 
Hi Gauss, they seem to be loaded into the GitHub for the sheet directly Unless I'm mistaken?
1760565821

Edited 1760565840
Gauss
Forum Champion
I don't know, I didn't check. My question was are you in the UK? If so that might be the reason it is broken.  Before digging around I wanted the answer to that question (would save me digging if you were in the UK). :)
1760565958

Edited 1760566152
vÍnce
Pro
Sheet Author
I just did a quick look and while it appears all the images for the sheet are included in /image sub directory of the sheet (awesome), the images are actually being pulled from a user account (zedafity) <a href="https://app.roll20.net/users/5690851/zedafty" rel="nofollow">https://app.roll20.net/users/5690851/zedafty</a> example; <a href="https://raw.githubusercontent.com/zedafty/wfrp4/master/images/cursor-focus.png" rel="nofollow">https://raw.githubusercontent.com/zedafty/wfrp4/master/images/cursor-focus.png</a> Seems like I recall this causing an issue in the past for some sheets.&nbsp;(what happens if the user closes their github account, deletes a branch or removes their fork for example) Probably best to update the image URL's for the sheet to point to the sheet's image folder.&nbsp; Might try reaching out to Zedafity directly.&nbsp; Cheers
Thanks&nbsp;vÍnce, I send Zedafty a message
1760567920
Gauss
Forum Champion
Thanks vÍnce, I am babysitting contractors today so didn't have the full time to check. :)
1760569664
vÍnce
Pro
Sheet Author
As a contractor I appreciate that comment. lol
1760606710
Zedafty
Pro
Sheet Author
Hi guys ! This issue should have been handled. Just have to wait for the update :) Being limited in testing, I can't clearly explain why this bug happens... Maybe it has something to do with the way the images redirection is handled by the character sheet URL parser on Roll20 Images Server, but it's not for certain. The strange thing shown on&nbsp; Alasdair M-D &nbsp;screenshot is that images set as CSS backgrounds are correctly displayed, but images set as HTML elements are wrong. Possibly, it can be an encoding error when using HTTP GET request: CSS backgrounds <a href="https://imgsrv.roll20.net//?src=https%3A%2F%2Fraw.githubusercontent.com%2Fzedafty%2Fwfrp4%2Fmaster%2Fimages%2Fcursor-normal.png" rel="nofollow">https://imgsrv.roll20.net//?src=https%3A%2F%2Fraw.githubusercontent.com%2Fzedafty%2Fwfrp4%2Fmaster%2Fimages%2Fcursor-normal.png</a> HTML elements <a href="https://imgsrv.roll20.net/?src=https%3A//raw.githubusercontent.com/zedafty/wfrp4/master/images/logo.png" rel="nofollow">https://imgsrv.roll20.net/?src=https%3A//raw.githubusercontent.com/zedafty/wfrp4/master/images/logo.png</a> As you can see, all slashes in CSS backgrounds URI are percent-encoded ( %2 ) after the URL search param src (string after the ? character), while they are not in HTML elements . However, I can't be sure of that. But I'm sure that images set as CSS backgrounds are correctly displayed. So, if the late update doesn't work, just let me know and I'll convert HTML images into CSS images :)